Class Iso18013AnnexCRequest
What the browser call carries, and what the verifier keeps to open the answer.
public sealed record Iso18013AnnexCRequest : IEquatable<Iso18013AnnexCRequest>
- Inheritance
-
Iso18013AnnexCRequest
- Implements
- Inherited Members
Properties
DeviceRequest
Encoded DeviceRequest; base64url this into the API request's deviceRequest.
public required byte[] DeviceRequest { get; init; }
Property Value
- byte[]
EncryptionInfo
Encoded EncryptionInfo; base64url this into the API request's encryptionInfo.
Store the exact bytes: the session transcript digest covers them.
public required byte[] EncryptionInfo { get; init; }
Property Value
- byte[]
ResponseKeyPkcs8
The PKCS#8 private key the wallet encrypts its response to. Store it with the session and pass it to OpenResponse(byte[], byte[], byte[], string).
public required byte[] ResponseKeyPkcs8 { get; init; }
Property Value
- byte[]