class sOAuthSignatureMethod_PLAINTEXT in jQuery social stream 7
Same name and namespace in other branches
- 7.2 jquery_social_stream.js.inc \sOAuthSignatureMethod_PLAINTEXT
The PLAINTEXT method does not provide any security protection and SHOULD only be used over a secure channel such as HTTPS. It does not use the Signature Base String.
- Chapter 9.4 ("PLAINTEXT")
Hierarchy
- class \sOAuthSignatureMethod
Expanded class hierarchy of sOAuthSignatureMethod_PLAINTEXT
File
- ./
jquery_social_stream.js.inc, line 450 - JS callbacks.
View source
class sOAuthSignatureMethod_PLAINTEXT extends sOAuthSignatureMethod {
public function get_name() {
return "PLAINTEXT";
}
/**
* oauth_signature is set to the concatenated encoded values of the Consumer Secret and
* Token Secret, separated by a '&' character (ASCII code 38), even if either secret is
* empty. The result MUST be encoded again.
* - Chapter 9.4.1 ("Generating Signatures")
*
* Please note that the second encoding MUST NOT happen in the SignatureMethod, as
* sOAuthRequest handles this!
*/
public function build_signature($request, $consumer, $token) {
$key_parts = array(
$consumer->secret,
$token ? $token->secret : "",
);
$key_parts = sOAuthUtil::urlencode_rfc3986($key_parts);
$key = implode('&', $key_parts);
$request->base_string = $key;
return $key;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
sOAuthSignatureMethod:: |
public | function | Verifies that a given signature is correct | 1 |
sOAuthSignatureMethod_PLAINTEXT:: |
public | function |
oauth_signature is set to the concatenated encoded values of the Consumer Secret and
Token Secret, separated by a '&' character (ASCII code 38), even if either secret is
empty. The result MUST be encoded again. Overrides sOAuthSignatureMethod:: |
|
sOAuthSignatureMethod_PLAINTEXT:: |
public | function |
Needs to return the name of the Signature Method (ie HMAC-SHA1) Overrides sOAuthSignatureMethod:: |