Cards

Get Encrypted Data

post/api/v1/cards/{publicToken}/encrypted

Path parameters

publicTokenstring required

Request body

keystring required

Base 64 encoded, encrypted key

paddingMode'PKCS1_5' | 'PKCS2_2' nullable

Padding mode

encryptionKeyLength'Rsa2048' | 'Rsa4096' nullable

Key length

hashingAlgorithm'Sha256' | 'Sha512' nullable

Hashing Algorithm

Response

Success

ivstring nullable

The encryption IV, stored in Base64.

encryptedPayloadstring nullable

Encrypted data, stored in Base64

signatureOfPayloadAndIvstring nullable

The signature of the encrypted payload and IV

Changes