| Package | com.yahoo.oauth |
| Class | public class OAuthSignatureMethod_HMAC_SHA1 |
| Inheritance | OAuthSignatureMethod_HMAC_SHA1 OAuthSignatureMethod |
See also
| Method | Defined by | ||
|---|---|---|---|
|
Class contructor.
| OAuthSignatureMethod_HMAC_SHA1 | ||
|
buildSignature(request:OAuthRequest):String
Signs the request using HMAC-SHA1 encryption.
| OAuthSignatureMethod_HMAC_SHA1 | ||
![]() |
checkSignature(signature:String, request:OAuthRequest):Boolean
Validates the given signature against a generated signature from the request.
| OAuthSignatureMethod | |
| OAuthSignatureMethod_HMAC_SHA1 | () | constructor |
public function OAuthSignatureMethod_HMAC_SHA1()Class contructor.
Creates a new OAuthSignatureMethod_HMAC_SHA1 object.
| buildSignature | () | method |
public override function buildSignature(request:OAuthRequest):StringSigns the request using HMAC-SHA1 encryption.
Parametersrequest:OAuthRequest — An OAuthRequest object to be signed.
|
String — The signature as a Base64 encoded keyed hash value.
|