in.s8.rsa.Service.DecryptionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RSA-Encryption-Decryption Show documentation
Show all versions of RSA-Encryption-Decryption Show documentation
Project to RSA-encrypt-decrypt
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