Class Iso18013AnnexCResponse
An opened Annex C response: the decrypted bytes and the transcript that binds them.
public sealed record Iso18013AnnexCResponse : IEquatable<Iso18013AnnexCResponse>
- Inheritance
-
Iso18013AnnexCResponse
- Implements
- Inherited Members
Properties
DeviceResponse
The decrypted DeviceResponse bytes, for Tessio.Verifier.Core.Mdoc.DeviceResponseParser and
MdocVerifier.
public required byte[] DeviceResponse { get; init; }
Property Value
- byte[]
SessionTranscript
The transcript this response is bound to. Pass it to SessionTranscript: the device signature covers it, and the response was decrypted with it, so a response that opened will verify against this one.
public required byte[] SessionTranscript { get; init; }
Property Value
- byte[]