object HmacSha512 extends SignatureAlgorithm
An implementation of the HMAC-SHA512
oauth signature method.
WARNING - This uses the HmacSHA512
implementation which is *not* required to be present by the Java spec.
(However, most modern Java runtimes tend to have it)
- Source
- SignatureAlgorithm.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HmacSha512
- SignatureAlgorithm
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
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
- HmacSha512 → SignatureAlgorithm
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
val
name: String
- returns
The signature method name per the oauth1.0 spec
- Definition Classes
- HmacSha512 → SignatureAlgorithm
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
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