You are here

public function LingotekOAuthSignatureMethod_PLAINTEXT::verify in Lingotek Translation 7.6

Same name and namespace in other branches
  1. 7.7 lib/oauth-php/library/signature_method/LingotekOAuthSignatureMethod_PLAINTEXT.php \LingotekOAuthSignatureMethod_PLAINTEXT::verify()
  2. 7.4 lib/oauth-php/library/signature_method/LingotekOAuthSignatureMethod_PLAINTEXT.php \LingotekOAuthSignatureMethod_PLAINTEXT::verify()
  3. 7.5 lib/oauth-php/library/signature_method/LingotekOAuthSignatureMethod_PLAINTEXT.php \LingotekOAuthSignatureMethod_PLAINTEXT::verify()

* Check if the request signature corresponds to the one calculated for the request. * *

Parameters

LingotekOAuthRequest request: * @param string base_string data to be signed, usually the base string, can be a request body * @param string consumer_secret * @param string token_secret * @param string signature from the request, still urlencoded * @return string

Overrides LingotekOAuthSignatureMethod::verify

File

lib/oauth-php/library/signature_method/LingotekOAuthSignatureMethod_PLAINTEXT.php, line 69

Class

LingotekOAuthSignatureMethod_PLAINTEXT

Code

public function verify($request, $base_string, $consumer_secret, $token_secret, $signature) {
  $a = $request
    ->urldecode($signature);
  $b = $request
    ->urldecode($this
    ->signature($request, $base_string, $consumer_secret, $token_secret));
  return $request
    ->urldecode($a) == $request
    ->urldecode($b);
}