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)