abstract public function OAuthSignatureMethod::get_name in OAuth 1.0 7.3
Same name and namespace in other branches
- 6.3 lib/OAuth.php \OAuthSignatureMethod::get_name()
Needs to return the name of the Signature Method (ie HMAC-SHA1)
Return value
string
4 methods override OAuthSignatureMethod::get_name()
- OAuthSignatureMethod_HMAC::get_name in includes/
OAuthSignatureMethod_HMAC.inc - Needs to return the name of the Signature Method (ie HMAC-SHA1)
- OAuthSignatureMethod_HMAC_SHA1::get_name in lib/
OAuth.php - Needs to return the name of the Signature Method (ie HMAC-SHA1)
- OAuthSignatureMethod_PLAINTEXT::get_name in lib/
OAuth.php - Needs to return the name of the Signature Method (ie HMAC-SHA1)
- OAuthSignatureMethod_RSA_SHA1::get_name in lib/
OAuth.php - Needs to return the name of the Signature Method (ie HMAC-SHA1)
File
- lib/
OAuth.php, line 77 - OAuth 1.0 server and client library.
Class
- OAuthSignatureMethod
- A class for implementing a Signature Method See section 9 ("Signing Requests") in the spec
Code
public abstract function get_name();