Searched refs:SUPPORTED_PRF_TO_STR (Results 1 – 2 of 2) sorted by relevance
152 protected static final SparseArray<String> SUPPORTED_PRF_TO_STR; field in SaProposal155 SUPPORTED_PRF_TO_STR = new SparseArray<>();156 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_HMAC_SHA1, "PRF_HMAC_SHA1"); in SUPPORTED_PRF_TO_STR.put()157 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_AES128_XCBC, "PRF_AES128_XCBC"); in SUPPORTED_PRF_TO_STR.put()158 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_SHA2_256, "PRF_HMAC2_256"); in SUPPORTED_PRF_TO_STR.put()159 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_SHA2_384, "PRF_HMAC2_384"); in SUPPORTED_PRF_TO_STR.put()160 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_SHA2_512, "PRF_HMAC2_512"); in SUPPORTED_PRF_TO_STR.put()161 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_AES128_CMAC, "PRF_AES128_CMAC"); in SUPPORTED_PRF_TO_STR.put()664 if (SUPPORTED_PRF_TO_STR.contains(algorithm)) { in getPseudorandomFunctionString()665 return SUPPORTED_PRF_TO_STR.get(algorithm); in getPseudorandomFunctionString()
161 for (int algo : getKeySet(SUPPORTED_PRF_TO_STR)) { in getSupportedPseudorandomFunctions()