Searched refs:encryptedBytes (Results 1 – 2 of 2) sorted by relevance
65 byte[] encryptedBytes = cipher.doFinal(clearBytes); in encryptBundle()67 byte[] mac = createMac(encryptedBytes, iv); in encryptBundle()70 encryptedBundle.putByteArray(KEY_CIPHER, encryptedBytes); in encryptBundle()81 byte[] encryptedBytes = bundle.getByteArray(KEY_CIPHER); in decryptBundle()83 if (!verifyMac(encryptedBytes, iv, mac)) { in decryptBundle()91 byte[] decryptedBytes = cipher.doFinal(encryptedBytes); in decryptBundle()
176 size_t encryptedBytes = (remainingBytes / AES_BLOCK_SIZE) * AES_BLOCK_SIZE; in processAAC() local182 status_t ret = decryptBlock(encrypted, encryptedBytes, AESInitVec); in processAAC()188 offset += encryptedBytes; in processAAC()189 remainingBytes -= encryptedBytes; in processAAC()230 size_t encryptedBytes = (remainingBytes / AES_BLOCK_SIZE) * AES_BLOCK_SIZE; in processAC3() local238 status_t ret = decryptBlock(encrypted, encryptedBytes, AESInitVec); in processAC3()244 offset += encryptedBytes; in processAC3()245 remainingBytes -= encryptedBytes; in processAC3()