Searched refs:updateAAD (Results 1 – 2 of 2) sorted by relevance
/libcore/luni/src/test/java/libcore/javax/crypto/ |
D | CipherTest.java | 1484 c.updateAAD(new byte[24]); in test_Cipher() 1488 c.updateAAD(new byte[24]); in test_Cipher() 1496 c.updateAAD(new byte[24]); in test_Cipher() 1503 c.updateAAD(new byte[24]); in test_Cipher() 3043 c.updateAAD(p.aad); in checkCipher() 3058 c.updateAAD(new byte[8]); in checkCipher() 3121 c.updateAAD(p.aad); in checkCipher() 3136 c.updateAAD(largerThanAad, 50, 1); in checkCipher() 3137 c.updateAAD(largerThanAad, 51, p.aad.length - 1); in checkCipher() 3155 c.updateAAD(largerThanAad, 2, p.aad.length); in checkCipher() [all …]
|
/libcore/ojluni/src/main/java/javax/crypto/ |
D | Cipher.java | 2559 public final void updateAAD(byte[] src) { in updateAAD() method in Cipher 2564 updateAAD(src, 0, src.length); in updateAAD() 2597 public final void updateAAD(byte[] src, int offset, int len) { in updateAAD() method in Cipher 2643 public final void updateAAD(ByteBuffer src) { in updateAAD() method in Cipher
|