You are here

public function sOAuthSignatureMethod_PLAINTEXT::get_name in jQuery social stream 7

Same name and namespace in other branches
  1. 7.2 jquery_social_stream.js.inc \sOAuthSignatureMethod_PLAINTEXT::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 451
JS callbacks.

Class

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.

Code

public function get_name() {
  return "PLAINTEXT";
}