Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/
DIkeNormalModeCipher.java42 static final byte[] AES_CTR_INITIAL_COUNTER = new byte[] {0x00, 0x00, 0x00, 0x01}; field in IkeNormalModeCipher
77 nonce = concatenateByteArray(nonce, AES_CTR_INITIAL_COUNTER); in doCipherAction()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DPacketUtils.java89 static final byte[] AES_CTR_INITIAL_COUNTER = new byte[] {0x00, 0x00, 0x00, 0x01}; field in PacketUtils
597 ByteBuffer.allocate(mIv.length + saltLen + AES_CTR_INITIAL_COUNTER.length); in getCipherText()
600 ivParameterBuffer.put(AES_CTR_INITIAL_COUNTER); in getCipherText()