Searched refs:authKey (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
D | IpSecAlgorithmImplTest.java | 254 final byte[] authKey = getKeyBytes(AES_XCBC_KEY_LEN); in testAesXcbc() 256 new IpSecAlgorithm(IpSecAlgorithm.AUTH_AES_XCBC, authKey, AES_XCBC_ICV_LEN * 8); in testAesXcbc() 257 final EspAuth espAuth = new EspAuth(AES_XCBC, authKey, AES_XCBC_ICV_LEN); in testAesXcbc() 268 final byte[] authKey = getKeyBytes(AES_CMAC_KEY_LEN); in testAesCmac() 270 new IpSecAlgorithm(IpSecAlgorithm.AUTH_AES_CMAC, authKey, AES_CMAC_ICV_LEN * 8); in testAesCmac() 271 final EspAuth espAuth = new EspAuth(AES_CMAC, authKey, AES_CMAC_ICV_LEN); in testAesCmac()
|
D | PacketUtils.java | 694 final SecretKeySpec authKey = new SecretKeySpec(key, algoName); in getIcv() local 695 mac.init(authKey); in getIcv()
|
/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/ |
D | PacketUtils.java | 367 SecretKeySpec authKey = new SecretKeySpec(key, HMAC_SHA_256); in getIcv() local 368 sha256HMAC.init(authKey); in getIcv()
|