Packages

class GrpcVaultService extends VaultService with NamedLogging

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. GrpcVaultService
  2. NamedLogging
  3. VaultService
  4. AbstractService
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new GrpcVaultService(crypto: Crypto, enablePreviewFeatures: Boolean, loggerFactory: NamedLoggerFactory)(implicit ec: ExecutionContext)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def deleteKeyPair(request: DeleteKeyPairRequest): Future[DeleteKeyPairResponse]
    Definition Classes
    GrpcVaultServiceVaultService
  7. implicit val ec: ExecutionContext
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. implicit def errorLoggingContext(implicit traceContext: TraceContext): ErrorLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  11. def exportKeyPair(request: ExportKeyPairRequest): Future[ExportKeyPairResponse]
    Definition Classes
    GrpcVaultServiceVaultService
  12. def generateEncryptionKey(request: GenerateEncryptionKeyRequest): Future[GenerateEncryptionKeyResponse]

    * Generates a new public / private key pair for hybrid encryption.

    * Generates a new public / private key pair for hybrid encryption.

    Stores the private key in the vault, and returns the public key

    Definition Classes
    GrpcVaultServiceVaultService
  13. def generateSigningKey(request: GenerateSigningKeyRequest): Future[GenerateSigningKeyResponse]

    * Generates a new public / private key pair for signing.

    * Generates a new public / private key pair for signing.

    Stores the private key in the vault, and returns the public key

    Definition Classes
    GrpcVaultServiceVaultService
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def getWrapperKeyId(request: GetWrapperKeyIdRequest): Future[GetWrapperKeyIdResponse]
    Definition Classes
    GrpcVaultServiceVaultService
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def importKeyPair(request: ImportKeyPairRequest): Future[ImportKeyPairResponse]
    Definition Classes
    GrpcVaultServiceVaultService
  18. def importPublicKey(request: ImportPublicKeyRequest): Future[ImportPublicKeyResponse]

    * Import a public key into the registry in order to provide that Fingerprint -> PublicKey lookups

    * Import a public key into the registry in order to provide that Fingerprint -> PublicKey lookups

    @param: ImportPublicKeyRequest serialized public key to be imported @return: fingerprint and serialized public key of imported public key

    Definition Classes
    GrpcVaultServiceVaultService
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def listMyKeys(request: ListKeysRequest): Future[ListMyKeysResponse]

    * List public keys according to request filter for which we have a private key in our key vault.

    * List public keys according to request filter for which we have a private key in our key vault.

    The request includes a filter for fingerprints which can be used for lookups.

    @param ListMyKeysRequest: request with optional fingerprint filter @return: all serialized keys and metadata that have the fingerprint filter as a substring in their fingerprint

    Definition Classes
    GrpcVaultServiceVaultService
  21. def listPublicKeys(request: ListKeysRequest): Future[ListKeysResponse]

    * Lists all public keys matching the supplied filter which are internally cached

    * Lists all public keys matching the supplied filter which are internally cached

    Any public key returned here can be referenced in topology transaction building by fingerprint.

    Definition Classes
    GrpcVaultServiceVaultService
  22. def logger: TracedLogger
    Attributes
    protected
    Definition Classes
    NamedLogging
  23. val loggerFactory: NamedLoggerFactory
    Attributes
    protected
    Definition Classes
    GrpcVaultServiceNamedLogging
  24. implicit def namedLoggingContext(implicit traceContext: TraceContext): NamedLoggingContext
    Attributes
    protected
    Definition Classes
    NamedLogging
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. def noTracingLogger: Logger
    Attributes
    protected
    Definition Classes
    NamedLogging
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def registerKmsEncryptionKey(request: RegisterKmsEncryptionKeyRequest): Future[RegisterKmsEncryptionKeyResponse]

    * Registers a KMS key for asymmetric/hybrid encryption.

    * Registers a KMS key for asymmetric/hybrid encryption.

    Stores the corresponding public key in the vault, and returns it

    Definition Classes
    GrpcVaultServiceVaultService
  30. def registerKmsSigningKey(request: RegisterKmsSigningKeyRequest): Future[RegisterKmsSigningKeyResponse]

    * Registers a KMS key for signing.

    * Registers a KMS key for signing.

    Stores the corresponding public key in the vault, and returns it

    Definition Classes
    GrpcVaultServiceVaultService
  31. def rotateWrapperKey(request: RotateWrapperKeyRequest): Future[Empty]

    * Changes the wrapper key that is used to encrypt private keys when stored

    * Changes the wrapper key that is used to encrypt private keys when stored

    Definition Classes
    GrpcVaultServiceVaultService
  32. def serviceCompanion: ServiceCompanion[VaultService]
    Definition Classes
    VaultService → AbstractService
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @Deprecated
    Deprecated

Inherited from NamedLogging

Inherited from VaultService

Inherited from AbstractService

Inherited from AnyRef

Inherited from Any

Ungrouped