EncryptedPAN
interface EncryptedPAN {
authTag: string;
ciphertext: string;
iv: string;
}Source: types.ts:190
AES-256-GCM encrypted PAN for compliant storage (PCI-DSS Req 3.4.1). All fields are hex-encoded strings.
Properties
authTag: string
16-byte GCM authentication tag (hex) — verifies integrity
ciphertext: string
AES-256-GCM ciphertext (hex)
iv: string
12-byte random IV (hex) — unique per encryption operation