object EncryptionAlgorithmSpec extends GeneratedEnumCompanion[EncryptionAlgorithmSpec]
- Alphabetic
- By Inheritance
- EncryptionAlgorithmSpec
- GeneratedEnumCompanion
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed trait Recognized extends EncryptionAlgorithmSpec
- final case class Unrecognized(unrecognizedValue: Int) extends EncryptionAlgorithmSpec with UnrecognizedEnum with Product with Serializable
- Annotations
- @SerialVersionUID()
- type ValueType = EncryptionAlgorithmSpec
- Definition Classes
- GeneratedEnumCompanion
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()
- implicit def enumCompanion: GeneratedEnumCompanion[EncryptionAlgorithmSpec]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromName(name: String): Option[EncryptionAlgorithmSpec]
- Definition Classes
- GeneratedEnumCompanion
- def fromValue(__value: Int): EncryptionAlgorithmSpec
- Definition Classes
- EncryptionAlgorithmSpec → GeneratedEnumCompanion
- 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 javaDescriptor: EnumDescriptor
- Definition Classes
- EncryptionAlgorithmSpec → GeneratedEnumCompanion
- 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 scalaDescriptor: EnumDescriptor
- Definition Classes
- EncryptionAlgorithmSpec → GeneratedEnumCompanion
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- lazy val values: Seq[ValueType]
- Definition Classes
- EncryptionAlgorithmSpec → GeneratedEnumCompanion
- 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])
- case object ENCRYPTION_ALGORITHM_SPEC_ECIES_HKDF_HMAC_SHA256_AES128CBC extends EncryptionAlgorithmSpec with Recognized with Product with Serializable
ECIES with ECDH, AES128 CBC, and HKDF and authentication (MAC) with HMAC-SHA256.
ECIES with ECDH, AES128 CBC, and HKDF and authentication (MAC) with HMAC-SHA256. This requires a P-256 key because we use SHA256 and we need to align the lengths of the curve the and hash function.
- Annotations
- @SerialVersionUID()
- case object ENCRYPTION_ALGORITHM_SPEC_ECIES_HKDF_HMAC_SHA256_AES128GCM extends EncryptionAlgorithmSpec with Recognized with Product with Serializable
ECIES with ECDH, AES128 GCM, and HKDF and authentication (MAC) with HMAC-SHA256.
ECIES with ECDH, AES128 GCM, and HKDF and authentication (MAC) with HMAC-SHA256. This requires a P-256 key because we use SHA256 and we need to align the lengths of the curve and the hash function.
- Annotations
- @SerialVersionUID()
- case object ENCRYPTION_ALGORITHM_SPEC_RSA_OAEP_SHA256 extends EncryptionAlgorithmSpec with Recognized with Product with Serializable
RSA with OAEP Padding, using SHA-256 for both the hash and in the MGF1 mask generation function along with an empty label.
RSA with OAEP Padding, using SHA-256 for both the hash and in the MGF1 mask generation function along with an empty label.
- Annotations
- @SerialVersionUID()
- case object ENCRYPTION_ALGORITHM_SPEC_UNSPECIFIED extends EncryptionAlgorithmSpec with Recognized with Product with Serializable
- Annotations
- @SerialVersionUID()