Packages

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HmacSha1
  2. SignatureAlgorithm
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. 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
    HmacSha1SignatureAlgorithm
  2. val name: String

    returns

    The signature method name per the oauth1.0 spec

    Definition Classes
    HmacSha1SignatureAlgorithm

Deprecated Value Members

  1. def generate(input: String, secretKey: String): String
    Definition Classes
    SignatureAlgorithm
    Annotations
    @deprecated
    Deprecated

    (Since version 0.22.5) Use generate[F[_]: MonadThrow] instead