case class EnterpriseCryptoConfig(provider: CryptoProvider = CryptoProvider.Tink, signing: CryptoSchemeConfig[SigningKeyScheme] = CryptoSchemeConfig(), encryption: CryptoSchemeConfig[EncryptionKeyScheme] = CryptoSchemeConfig(), symmetric: CryptoSchemeConfig[SymmetricKeyScheme] = CryptoSchemeConfig(), hash: CryptoSchemeConfig[HashAlgorithm] = CryptoSchemeConfig(), kms: Option[KmsConfig] = None, privateKeyStore: PrivateKeyStoreConfig = PrivateKeyStoreConfig()) extends CryptoConfig with Product with Serializable
Defines an enterprise crypto configuration with two new configurations kms and privateKeyStore.
- kms
defines a KMS client configuration (e.g. Aws)
- privateKeyStore
define the type of a private key store
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EnterpriseCryptoConfig
- Serializable
- Product
- Equals
- CryptoConfig
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new EnterpriseCryptoConfig(provider: CryptoProvider = CryptoProvider.Tink, signing: CryptoSchemeConfig[SigningKeyScheme] = CryptoSchemeConfig(), encryption: CryptoSchemeConfig[EncryptionKeyScheme] = CryptoSchemeConfig(), symmetric: CryptoSchemeConfig[SymmetricKeyScheme] = CryptoSchemeConfig(), hash: CryptoSchemeConfig[HashAlgorithm] = CryptoSchemeConfig(), kms: Option[KmsConfig] = None, privateKeyStore: PrivateKeyStoreConfig = PrivateKeyStoreConfig())
- kms
defines a KMS client configuration (e.g. Aws)
- privateKeyStore
define the type of a private key store
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()
- val encryption: CryptoSchemeConfig[EncryptionKeyScheme]
the encryption key scheme configuration
the encryption key scheme configuration
- Definition Classes
- EnterpriseCryptoConfig → CryptoConfig
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val hash: CryptoSchemeConfig[HashAlgorithm]
the hash algorithm configuration
the hash algorithm configuration
- Definition Classes
- EnterpriseCryptoConfig → CryptoConfig
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val kms: Option[KmsConfig]
- 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()
- val privateKeyStore: PrivateKeyStoreConfig
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val provider: CryptoProvider
the crypto provider implementation to use
the crypto provider implementation to use
- Definition Classes
- EnterpriseCryptoConfig → CryptoConfig
- val signing: CryptoSchemeConfig[SigningKeyScheme]
the signing key scheme configuration
the signing key scheme configuration
- Definition Classes
- EnterpriseCryptoConfig → CryptoConfig
- val symmetric: CryptoSchemeConfig[SymmetricKeyScheme]
the symmetric key scheme configuration
the symmetric key scheme configuration
- Definition Classes
- EnterpriseCryptoConfig → CryptoConfig
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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])