• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. LubaArbel

    Apps AEADBadTagException Caused by KeyStoreException: Signature/MAC verification failed

    I use AES key with this code to encrypt: private EncryptionResult encrypt(SecretKey secretKey, String message) throws Throwable { Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding"); cipher.init(Cipher.ENCRYPT_MODE, secretKey); byte[] cipherText =...