trait CryptoPrivateStoreApi extends CryptoPrivateApi with EncryptionPrivateStoreOps with SigningPrivateStoreOps
- Alphabetic
- By Inheritance
- CryptoPrivateStoreApi
- SigningPrivateStoreOps
- EncryptionPrivateStoreOps
- CryptoPrivateApi
- SigningPrivateOps
- EncryptionPrivateOps
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def defaultEncryptionKeyScheme: EncryptionKeyScheme
- Definition Classes
- EncryptionPrivateOps
- abstract def defaultSigningKeyScheme: SigningKeyScheme
- Definition Classes
- SigningPrivateOps
- implicit abstract val ec: ExecutionContext
- Definition Classes
- SigningPrivateStoreOps
- abstract val encryptionOps: EncryptionOps
- Attributes
- protected
- Definition Classes
- EncryptionPrivateStoreOps
- abstract def generateEncryptionKeypair(scheme: EncryptionKeyScheme)(implicit traceContext: TraceContext): EitherT[Future, EncryptionKeyGenerationError, EncryptionKeyPair]
Internal method to generate and return the entire encryption key pair
Internal method to generate and return the entire encryption key pair
- Attributes
- protected
- Definition Classes
- EncryptionPrivateStoreOps
- abstract def generateSigningKeypair(scheme: SigningKeyScheme)(implicit traceContext: TraceContext): EitherT[Future, SigningKeyGenerationError, SigningKeyPair]
Internal method to generate and return the entire signing key pair
Internal method to generate and return the entire signing key pair
- Attributes
- protected
- Definition Classes
- SigningPrivateStoreOps
- abstract val signingOps: SigningOps
- Attributes
- protected
- Definition Classes
- SigningPrivateStoreOps
- abstract val store: CryptoPrivateStore
- Attributes
- protected
- Definition Classes
- SigningPrivateStoreOps
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 decrypt[M](encryptedMessage: AsymmetricEncrypted[M])(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
- EncryptionPrivateStoreOps → EncryptionPrivateOps
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- 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
- EncryptionPrivateStoreOps → EncryptionPrivateOps
- def generateSigningKey(scheme: SigningKeyScheme, name: Option[KeyName])(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
- SigningPrivateStoreOps → SigningPrivateOps
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- 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(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
- SigningPrivateStoreOps → SigningPrivateOps
- 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])