final case class SignatureDelegation(sessionKey: ByteString, sessionKeySpec: SigningKeySpec, validityPeriodFromInclusive: Long, validityPeriodDurationSeconds: Int, format: SignatureFormat, signature: ByteString, signingAlgorithmSpec: SigningAlgorithmSpec) extends GeneratedMessage with Updatable[SignatureDelegation] with Product with Serializable

sessionKey

ASN.1 + DER-encoding of X.509 SubjectPublicKeyInfo structure of the session public key: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1. This key was used to produce the actual signature.

sessionKeySpec

The signing key spec for the session key.

validityPeriodFromInclusive

A timestamp in microseconds of UTC time since Unix epoch that indicates when the session key is considered valid.

validityPeriodDurationSeconds

Duration in seconds indicating how long the session key remains valid. The validity period starts from validity_period_from_inclusive above.

format

The format of the signature

signature

The signature of the combined hash of the session key fingerprint, validity period, and synchronizer id, by the long-term key. This signature authorizes the session key to act on behalf of the long-term key.

signingAlgorithmSpec

The signing algorithm specification used to produce this signature

Annotations
@SerialVersionUID()
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SignatureDelegation
  2. Updatable
  3. GeneratedMessage
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new SignatureDelegation(sessionKey: ByteString, sessionKeySpec: SigningKeySpec, validityPeriodFromInclusive: Long, validityPeriodDurationSeconds: Int, format: SignatureFormat, signature: ByteString, signingAlgorithmSpec: SigningAlgorithmSpec)

    sessionKey

    ASN.1 + DER-encoding of X.509 SubjectPublicKeyInfo structure of the session public key: https://datatracker.ietf.org/doc/html/rfc5280#section-4.1. This key was used to produce the actual signature.

    sessionKeySpec

    The signing key spec for the session key.

    validityPeriodFromInclusive

    A timestamp in microseconds of UTC time since Unix epoch that indicates when the session key is considered valid.

    validityPeriodDurationSeconds

    Duration in seconds indicating how long the session key remains valid. The validity period starts from validity_period_from_inclusive above.

    format

    The format of the signature

    signature

    The signature of the combined hash of the session key fingerprint, validity period, and synchronizer id, by the long-term key. This signature authorizes the session key to act on behalf of the long-term key.

    signingAlgorithmSpec

    The signing algorithm specification used to produce this signature

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]) @IntrinsicCandidate() @native()
  6. def companion: SignatureDelegation.type
    Definition Classes
    SignatureDelegation → GeneratedMessage
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. val format: SignatureFormat
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  10. def getField(__field: FieldDescriptor): PValue
    Definition Classes
    SignatureDelegation → GeneratedMessage
  11. def getFieldByNumber(__fieldNumber: Int): Any
    Definition Classes
    SignatureDelegation → GeneratedMessage
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  16. def productElementNames: Iterator[String]
    Definition Classes
    Product
  17. def serializedSize: Int
    Definition Classes
    SignatureDelegation → GeneratedMessage
  18. val sessionKey: ByteString
  19. val sessionKeySpec: SigningKeySpec
  20. val signature: ByteString
  21. val signingAlgorithmSpec: SigningAlgorithmSpec
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. final def toByteArray: Array[Byte]
    Definition Classes
    GeneratedMessage
  24. final def toByteString: ByteString
    Definition Classes
    GeneratedMessage
  25. final def toPMessage: PMessage
    Definition Classes
    GeneratedMessage
  26. def toProtoString: String
    Definition Classes
    SignatureDelegation → GeneratedMessage
  27. def update(ms: (Lens[SignatureDelegation, SignatureDelegation]) => Mutation[SignatureDelegation]*): SignatureDelegation
    Definition Classes
    Updatable
  28. val validityPeriodDurationSeconds: Int
  29. val validityPeriodFromInclusive: Long
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. def withFormat(__v: SignatureFormat): SignatureDelegation
  34. def withSessionKey(__v: ByteString): SignatureDelegation
  35. def withSessionKeySpec(__v: SigningKeySpec): SignatureDelegation
  36. def withSignature(__v: ByteString): SignatureDelegation
  37. def withSigningAlgorithmSpec(__v: SigningAlgorithmSpec): SignatureDelegation
  38. def withValidityPeriodDurationSeconds(__v: Int): SignatureDelegation
  39. def withValidityPeriodFromInclusive(__v: Long): SignatureDelegation
  40. final def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage
  41. def writeTo(_output__: CodedOutputStream): Unit
    Definition Classes
    SignatureDelegation → GeneratedMessage
  42. final def writeTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage

Deprecated Value Members

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

    (Since version 9)

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped