[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/vendor/lusitanian/oauth/src/OAuth/OAuth1/Signature/ -> SignatureInterface.php (source)

   1  <?php
   2  
   3  namespace OAuth\OAuth1\Signature;
   4  
   5  use OAuth\Common\Consumer\CredentialsInterface;
   6  use OAuth\Common\Http\Uri\UriInterface;
   7  
   8  interface SignatureInterface
   9  {
  10      /**
  11       * @param string $algorithm
  12       */
  13      public function setHashingAlgorithm($algorithm);
  14  
  15      /**
  16       * @param string $token
  17       */
  18      public function setTokenSecret($token);
  19  
  20      /**
  21       * @param UriInterface $uri
  22       * @param array        $params
  23       * @param string       $method
  24       *
  25       * @return string
  26       */
  27      public function getSignature(UriInterface $uri, array $params, $method = 'POST');
  28  }


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1