object HmacSha1 extends SignatureAlgorithm
An implementation of the HMAC-SHA1
oauth signature method.
This uses the HmacSHA1
implementation which every java platform is required to have.
- Source
- SignatureAlgorithm.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HmacSha1
- SignatureAlgorithm
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
generate[F[_]](input: String, secretKey: String)(implicit arg0: MonadThrow[F]): F[String]
Apply the implementation's algorithm to the input
Apply the implementation's algorithm to the input
- input
The input value
- secretKey
The secret key
- returns
The base64-encoded output
- Definition Classes
- HmacSha1 → SignatureAlgorithm
-
val
name: String
- returns
The signature method name per the oauth1.0 spec
- Definition Classes
- HmacSha1 → SignatureAlgorithm
Deprecated Value Members
-
def
generate(input: String, secretKey: String): String
- Definition Classes
- SignatureAlgorithm
- Annotations
- @deprecated
- Deprecated
(Since version 0.22.5) Use generate[F[_]: MonadThrow] instead