You are here

function sOAuthSignatureMethod_HMAC_SHA1::get_name in jQuery social stream 7.2

Same name and namespace in other branches
  1. 7 jquery_social_stream.js.inc \sOAuthSignatureMethod_HMAC_SHA1::get_name()

Needs to return the name of the Signature Method (ie HMAC-SHA1)

Return value

string

Overrides sOAuthSignatureMethod::get_name

File

./jquery_social_stream.js.inc, line 555
JS callbacks.

Class

sOAuthSignatureMethod_HMAC_SHA1
The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104] where the Signature Base String is the text and the key is the concatenated values (each first encoded per Parameter Encoding) of the Consumer Secret and…

Code

function get_name() {
  return "HMAC-SHA1";
}