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
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringcomputeSignature(java.lang.String signatureBaseString)Returns the signature computed from the given signature base string.java.lang.StringgetSignatureMethod()Returns the signature method.
-
-
-
Method Detail
-
getSignatureMethod
java.lang.String getSignatureMethod()
Returns the signature method.
-
computeSignature
java.lang.String computeSignature(java.lang.String signatureBaseString) throws java.security.GeneralSecurityExceptionReturns the signature computed from the given signature base string.- Throws:
java.security.GeneralSecurityException- general security exception
-
-