Package-level declarations
Types
Link copied to clipboard
object CardEncrypter
Allows the encryption of card data to be sent to Adyen's APIs. Use this class with the custom card integration.
Link copied to clipboard
data class EncryptedCard(val encryptedCardNumber: String?, val encryptedExpiryMonth: String?, val encryptedExpiryYear: String?, val encryptedSecurityCode: String?) : Parcelable
The encrypted card data to be sent to Adyen's APIs.
Link copied to clipboard
Exception thrown when the Adyen encryption fails.
Link copied to clipboard
object GenericEncrypter
Allows the encryption of any type of data to be sent to Adyen's APIs. Use this class with custom component integrations.
Link copied to clipboard
class UnencryptedCard
Class containing raw card data that needs to be encrypted. Use Builder to instantiate and CardEncrypter to encrypt.