JwsSigned

data class JwsSigned<out P : Any>(val header: JwsHeader, val payload: P, val signature: CryptoSignature.RawByteEncodable, val plainSignatureInput: ByteArray)(source)

Representation of a signed JSON Web Signature object, i.e. consisting of header, payload and signature.

<P> represents the type of the payload.

See RFC 7515

Constructors

Link copied to clipboard
constructor(header: JwsHeader, payload: P, signature: CryptoSignature.RawByteEncodable, plainSignatureInput: ByteArray)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
val payload: P
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
Link copied to clipboard
open override fun toString(): String