All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.worldpay.cse.jwe.WPEncrypter Maven / Gradle / Ivy

Go to download

Android SDK is a library created to help you integrate Worldpay client side encryption into your mobile applications.

There is a newer version: 1.0.4
Show newest version
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