Created
July 10, 2018 17:43
-
-
Save FinalDestiny/db33eb92fa779e51496e30d2a73ab3f8 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
if(!class_exists('OAuthSignatureMethod_HMAC_SHA1') ) { | |
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