Created
July 10, 2018 17:43
-
-
Save FinalDestiny/048231072909003417d1d18058d10498 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class OAuthSignatureMethod_HMAC_SHA1 extends OAuthSignatureMethod { | |
function get_name() { | |
return "HMAC-SHA1"; | |
} | |
public function build_signature($request, $consumer, $token) { | |
$base_string = $request->get_signature_base_string(); | |
$request->base_string = $base_string; | |
$key_parts = array( | |
$consumer->secret, | |
($token) ? $token->secret : "" | |
); | |
$key_parts = OAuthUtil::urlencode_rfc3986($key_parts); | |
$key = implode('&', $key_parts); | |
return base64_encode(hash_hmac('sha1', $base_string, $key, true)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment