abstract class Signer[F[_]] extends AnyRef

A Signer computes a signature (such as a checksum) of data.

F

The context in which results are wrapped. This allows a Signer to return a possible failure via Option, a disjunction, etc.

Source
Signer.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Signer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Signer()

Abstract Value Members

  1. abstract def signature(key: SignatureKey, data: ByteVector, signatureLengthBytes: Int): F[ByteVector]