adyen_client_side_encryption 0.0.1 copy "adyen_client_side_encryption: ^0.0.1" to clipboard
adyen_client_side_encryption: ^0.0.1 copied to clipboard

outdated

Adyen card client side encryption (CSE)

Adyen client side encryption #

Note: This library is not official from Adyen.

A Flutter plugin to encrypt card details on the client. The encryption is done via the adyen SDK under the hood.

Example #

final card = UnencryptedCard(
  number: '123456789',
  expiryMonth: '12',
  expiryYear: '2025',
  cvc: '123',
);
final encryptedCard = await CardEncrypter.encryptCard(card, publicKey);