I am developing an android application in which it is necessary to decrypt the file. I specify an algorithm as follows:
Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding", "Crypto");
But get the error:
java.security.NoSuchAlgorithmException: AES/ECB/PKCS5Padding
What is my mistake?
Thanks.