ZenphotoCMS 1.6.1

OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod
in package

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 Token Secret, separated by an '&' character (ASCII code 38) even if empty.

  • Chapter 9.2 ("HMAC-SHA1")

Table of Contents

build_signature()  : string
Build up the signature NOTE: The output of this function MUST NOT be urlencoded.
check_signature()  : bool
Verifies that a given signature is correct
get_name()  : string
Needs to return the name of the Signature Method (ie HMAC-SHA1)

Methods

build_signature()

Build up the signature NOTE: The output of this function MUST NOT be urlencoded.

public build_signature(mixed $request, mixed $consumer, mixed $token) : string

the encoding is handled in OAuthRequest when the final request is serialized

Parameters
$request : mixed
$consumer : mixed
$token : mixed
Return values
string

get_name()

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

public get_name() : string
Return values
string

Search results