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

in.s8.rsa.implService.DecryptService Maven / Gradle / Ivy

The newest version!
package in.s8.rsa.implService;

import javax.crypto.BadPaddingException;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;

/**
 * Created by Sourabh_Sethi on 5/17/2016.
 */
public interface DecryptService {

    public String decrypt(byte[] text, PrivateKey key) throws NoSuchPaddingException, NoSuchAlgorithmException,
            InvalidKeyException, BadPaddingException, IllegalBlockSizeException ;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy