com.worldpay.cse.jwe.WPEncrypter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cse-android-sdk Show documentation
Show all versions of cse-android-sdk Show documentation
Android SDK is a library created to help you integrate Worldpay client side encryption into your mobile applications.
package com.worldpay.cse.jwe;
/**
* Encrypter interface. Implemented by {@link WPRSAEncrypter} and {@link WPAESEncrypter}
*/
interface WPEncrypter {
/**
* Encrypts the data
*
* @param data the plain data as an array of bytes
* @return the encrypted data (cipher) as an array of bytes
*/
byte[] encrypt(byte[] data);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy