trait CryptoPublicStore extends AutoCloseable
Store for all public cryptographic material such as certificates or public keys.
- Self Type
- CryptoPublicStore with NamedLogging
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- CryptoPublicStore
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def close(): Unit
- Definition Classes
- AutoCloseable
- Annotations
- @throws(classOf[java.lang.Exception])
- implicit abstract val ec: ExecutionContext
- abstract def readEncryptionKey(encryptionKeyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, EncryptionPublicKeyWithName]
- Attributes
- protected
- abstract def readSigningKey(signingKeyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, SigningPublicKeyWithName]
- Attributes
- protected
- abstract def writeEncryptionKey(key: EncryptionPublicKey, name: Option[KeyName])(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]
- Attributes
- protected
- abstract def writeSigningKey(key: SigningPublicKey, name: Option[KeyName])(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]
- Attributes
- protected
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]) @IntrinsicCandidate() @native()
- def encryptionKey(encryptionKeyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, EncryptionPublicKey]
- def encryptionKeyWithName(encryptionKeyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, EncryptionPublicKeyWithName]
- def encryptionKeys(implicit traceContext: TraceContext): FutureUnlessShutdown[Set[EncryptionPublicKey]]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def findEncryptionKeyIdByName(keyName: KeyName)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, EncryptionPublicKey]
- def findSigningKeyIdByName(keyName: KeyName)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, SigningPublicKey]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def migratePublicKeys(isActive: Boolean, timeouts: ProcessingTimeout)(implicit traceContext: TraceContext): EitherT[FutureUnlessShutdown, CryptoPublicStoreError, Unit]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def publicKey(keyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, PublicKey]
- def signingKey(signingKeyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, SigningPublicKey]
- def signingKeyWithName(signingKeyId: Fingerprint)(implicit traceContext: TraceContext): OptionT[FutureUnlessShutdown, SigningPublicKeyWithName]
- def signingKeys(implicit traceContext: TraceContext): FutureUnlessShutdown[Set[SigningPublicKey]]
- def storeEncryptionKey(key: EncryptionPublicKey, name: Option[KeyName] = None)(implicit traceContext: TraceContext): FutureUnlessShutdown[Unit]
- 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])