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

in.s8.rsa.Service.DecryptionService Maven / Gradle / Ivy

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

import javax.crypto.BadPaddingException;
import javax.crypto.NoSuchPaddingException;
import java.security.PrivateKey;

/**
 * Created by Sourabh_Sethi on 4/26/2016.
 */
public interface DecryptionService {

    public abstract String decryption(String encryptedTxt);

    @Deprecated
    public abstract String decryptionSetup(String encryptedTxt, String privateKeyLocation);

    public String decryption(String encryptedString, PrivateKey privateKey) throws NoSuchPaddingException, BadPaddingException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy