Home
last modified time | relevance | path

Searched refs:computeHkdf (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/identity/src/android/security/identity/cts/
DHkdfTest.java83 byte[] hkdfWithNullSalt = Util.computeHkdf("HmacSha256", ikm, null, info, size); in testNullSaltOrInfo()
84 byte[] hkdfWithEmptySalt = Util.computeHkdf("HmacSha256", ikm, new byte[0], info, size); in testNullSaltOrInfo()
88 byte[] hkdfWithNullInfo = Util.computeHkdf("HmacSha256", ikm, salt, null, size); in testNullSaltOrInfo()
89 byte[] hkdfWithEmptyInfo = Util.computeHkdf("HmacSha256", ikm, salt, new byte[0], size); in testNullSaltOrInfo()
96 Util.computeHkdf("HmacSha256", new byte[0], new byte[0], new byte[0], 32 * 256); in testInvalidCodeSize()
195 Util.computeHkdf(macAlgorithm, hexDecode(ikmHex), hexDecode(saltHex), in computeHkdfHex()
DEphemeralKeyTest.java161 byte[] derivedKey = Util.computeHkdf("HmacSha256", sharedSecret, salt, info, 32); in TestReader()
165 derivedKey = Util.computeHkdf("HmacSha256", sharedSecret, salt, info,32); in TestReader()
DUtil.java1012 byte[] derivedKey = Util.computeHkdf("HmacSha256", in calcEMacKeyForReader()
1042 static byte[] computeHkdf( in computeHkdf() method in Util