object CryptoKeyFormat extends GeneratedEnumCompanion[CryptoKeyFormat]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CryptoKeyFormat
- GeneratedEnumCompanion
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed trait Recognized extends CryptoKeyFormat
- final case class Unrecognized(unrecognizedValue: Int) extends CryptoKeyFormat with UnrecognizedEnum with Product with Serializable
- Annotations
- @SerialVersionUID()
- type ValueType = CryptoKeyFormat
- 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]) @native() @HotSpotIntrinsicCandidate()
- implicit def enumCompanion: GeneratedEnumCompanion[CryptoKeyFormat]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fromName(name: String): Option[CryptoKeyFormat]
- Definition Classes
- GeneratedEnumCompanion
- def fromValue(__value: Int): CryptoKeyFormat
- Definition Classes
- CryptoKeyFormat → GeneratedEnumCompanion
- 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
- def javaDescriptor: EnumDescriptor
- Definition Classes
- CryptoKeyFormat → GeneratedEnumCompanion
- 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 scalaDescriptor: EnumDescriptor
- Definition Classes
- CryptoKeyFormat → GeneratedEnumCompanion
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- lazy val values: Seq[CryptoKeyFormat]
- Definition Classes
- CryptoKeyFormat → 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 Der extends CryptoKeyFormat with Recognized with Product with Serializable
ASN.1 + DER encoding
ASN.1 + DER encoding
- Annotations
- @SerialVersionUID()
- case object MissingCryptoKeyFormat extends CryptoKeyFormat with Recognized with Product with Serializable
- Annotations
- @SerialVersionUID()
- case object Raw extends CryptoKeyFormat with Recognized with Product with Serializable
Raw encoding of a key, typically used for symmetric keys or Ed25519 keypairs.
Raw encoding of a key, typically used for symmetric keys or Ed25519 keypairs.
- Annotations
- @SerialVersionUID()
- case object Symbolic extends CryptoKeyFormat with Recognized with Product with Serializable
Symbolic crypto, must only be used for testing
Symbolic crypto, must only be used for testing
- Annotations
- @SerialVersionUID()
- case object Tink extends CryptoKeyFormat with Recognized with Product with Serializable
Tink's KeySet proto serialization format https://github.com/google/tink/tree/1.5/proto
Tink's KeySet proto serialization format https://github.com/google/tink/tree/1.5/proto
- Annotations
- @SerialVersionUID()