Package com.google.api.client.auth.oauth
Interface OAuthSigner
-
- All Known Implementing Classes:
OAuthHmacSigner,OAuthRsaSigner
@Beta public interface OAuthSignerBeta
OAuth signature method.- Since:
- 1.0
- Author:
- Yaniv Inbar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringcomputeSignature(String signatureBaseString)Returns the signature computed from the given signature base string.StringgetSignatureMethod()Returns the signature method.
-
-
-
Method Detail
-
getSignatureMethod
String getSignatureMethod()
Returns the signature method.
-
computeSignature
String computeSignature(String signatureBaseString) throws GeneralSecurityException
Returns the signature computed from the given signature base string.- Throws:
GeneralSecurityException- general security exception
-
-