Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DSaProposal.java132 private static final SparseArray<String> SUPPORTED_PRF_TO_STR; field in SaProposal
135 SUPPORTED_PRF_TO_STR = new SparseArray<>();
136 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_HMAC_SHA1, "PRF_HMAC_SHA1"); in SUPPORTED_PRF_TO_STR.put()
137 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_AES128_XCBC, "PRF_AES128_XCBC"); in SUPPORTED_PRF_TO_STR.put()
138 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_SHA2_256, "PRF_HMAC2_256"); in SUPPORTED_PRF_TO_STR.put()
139 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_SHA2_384, "PRF_HMAC2_384"); in SUPPORTED_PRF_TO_STR.put()
140 SUPPORTED_PRF_TO_STR.put(PSEUDORANDOM_FUNCTION_SHA2_512, "PRF_HMAC2_512"); in SUPPORTED_PRF_TO_STR.put()
505 return SUPPORTED_PRF_TO_STR.get(algorithm) != null; in isSupportedPseudorandomFunction()
549 return SUPPORTED_PRF_TO_STR.get(algorithm); in getPseudorandomFunctionString()