trait CryptoPrivateApi extends EncryptionPrivateOps with SigningPrivateOps with HmacPrivateOps
- Alphabetic
- By Inheritance
- CryptoPrivateApi
- HmacPrivateOps
- HmacOps
- SigningPrivateOps
- EncryptionPrivateOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def decrypt[M](encrypted: Encrypted[M], encryptionKeyId: Fingerprint)(deserialize: (ByteString) => Either[DeserializationError, M]): EitherT[Future, DecryptionError, M]
Decrypts an encrypted message using the referenced private encryption key
Decrypts an encrypted message using the referenced private encryption key
- Definition Classes
- EncryptionPrivateOps
- abstract def defaultEncryptionKeyScheme: EncryptionKeyScheme
- Definition Classes
- EncryptionPrivateOps
- abstract def defaultSigningKeyScheme: SigningKeyScheme
- Definition Classes
- SigningPrivateOps
- abstract def generateEncryptionKey(scheme: EncryptionKeyScheme = defaultEncryptionKeyScheme, name: Option[KeyName] = None)(implicit traceContext: TraceContext): EitherT[Future, EncryptionKeyGenerationError, EncryptionPublicKey]
Generates a new encryption key pair with the given scheme and optional name, stores the private key and returns the public key.
Generates a new encryption key pair with the given scheme and optional name, stores the private key and returns the public key.
- Definition Classes
- EncryptionPrivateOps
- abstract def generateSigningKey(scheme: SigningKeyScheme = defaultSigningKeyScheme, name: Option[KeyName] = None)(implicit traceContext: TraceContext): EitherT[Future, SigningKeyGenerationError, SigningPublicKey]
Generates a new signing key pair with the given scheme and optional name, stores the private key and returns the public key.
Generates a new signing key pair with the given scheme and optional name, stores the private key and returns the public key.
- Attributes
- protected[crypto]
- Definition Classes
- SigningPrivateOps
- abstract def hmacSecret(implicit ec: ExecutionContext, traceContext: TraceContext): EitherT[Future, HmacError, Option[HmacSecret]]
- Attributes
- protected
- Definition Classes
- HmacPrivateOps
- abstract def initializeHmacSecret()(implicit executionContext: ExecutionContext, traceContext: TraceContext): EitherT[Future, HmacError, Unit]
Initializes the private HMAC secret if not present
Initializes the private HMAC secret if not present
- Definition Classes
- HmacPrivateOps
- abstract def sign(bytes: ByteString, signingKeyId: Fingerprint): EitherT[Future, SigningError, Signature]
Signs the byte string directly, however it is encouraged to sign a hash.
Signs the byte string directly, however it is encouraged to sign a hash.
- Attributes
- protected[crypto]
- Definition Classes
- SigningPrivateOps
Concrete 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(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def defaultHmacAlgorithm: HmacAlgorithm
- Definition Classes
- HmacOps
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hmac(message: ByteString, algorithm: HmacAlgorithm = defaultHmacAlgorithm)(implicit executionContext: ExecutionContext): EitherT[Future, HmacError, Hmac]
Calculates the HMAC of the given message using the stored private key
Calculates the HMAC of the given message using the stored private key
- Definition Classes
- HmacPrivateOps
- def hmacWithSecret(secret: HmacSecret, message: ByteString, algorithm: HmacAlgorithm = defaultHmacAlgorithm): Either[HmacError, Hmac]
- Definition Classes
- HmacOps
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def sign(hash: Hash, signingKeyId: Fingerprint): EitherT[Future, SigningError, Signature]
Signs the given hash using the referenced private signing key.
Signs the given hash using the referenced private signing key.
- Definition Classes
- SigningPrivateOps
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])