Home
last modified time | relevance | path

Searched refs:updateAAD (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/javax/crypto/
DCipherTest.java2582 c.updateAAD(new byte[8]); in checkCipher()
2703 c.updateAAD((byte[]) null); in testCipher_updateAAD_BeforeInit_Failure()
2709 c.updateAAD((ByteBuffer) null); in testCipher_updateAAD_BeforeInit_Failure()
2715 c.updateAAD(new byte[8]); in testCipher_updateAAD_BeforeInit_Failure()
2721 c.updateAAD(null, 0, 8); in testCipher_updateAAD_BeforeInit_Failure()
2728 c.updateAAD(bb); in testCipher_updateAAD_BeforeInit_Failure()
2739 c.updateAAD((byte[]) null); in testCipher_updateAAD_AfterInit_Failure()
2745 c.updateAAD((ByteBuffer) null); in testCipher_updateAAD_AfterInit_Failure()
2751 c.updateAAD(null, 0, 8); in testCipher_updateAAD_AfterInit_Failure()
2757 c.updateAAD(new byte[8], -1, 7); in testCipher_updateAAD_AfterInit_Failure()
[all …]
/libcore/luni/src/main/java/javax/crypto/
DCipher.java1182 public final void updateAAD(byte[] input) { in updateAAD() method in Cipher
1217 public final void updateAAD(byte[] input, int inputOffset, int inputLen) { in updateAAD() method in Cipher
1247 public final void updateAAD(ByteBuffer input) { in updateAAD() method in Cipher