Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DSaProposal.java193 protected static final SparseArray<String> SUPPORTED_INTEGRITY_ALGO_TO_STR; field in SaProposal
196 SUPPORTED_INTEGRITY_ALGO_TO_STR = new SparseArray<>();
197 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_NONE, "AUTH_NONE"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
198 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_HMAC_SHA1_96, "AUTH_HMAC_SHA1_96"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
199 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_AES_XCBC_96, "AUTH_AES_XCBC_96"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
200 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_AES_CMAC_96, "AUTH_AES_CMAC_96"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
201 SUPPORTED_INTEGRITY_ALGO_TO_STR.put( in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
203 SUPPORTED_INTEGRITY_ALGO_TO_STR.put( in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
205 SUPPORTED_INTEGRITY_ALGO_TO_STR.put( in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
676 if (SUPPORTED_INTEGRITY_ALGO_TO_STR.contains(algorithm)) { in getIntegrityAlgorithmString()
[all …]
DChildSaProposal.java202 for (int i = 0; i < SUPPORTED_INTEGRITY_ALGO_TO_STR.size(); i++) { in getSupportedIntegrityAlgorithms()
203 int ikeAlgoId = SUPPORTED_INTEGRITY_ALGO_TO_STR.keyAt(i); in getSupportedIntegrityAlgorithms()
DIkeSaProposal.java146 for (int algo : getKeySet(SUPPORTED_INTEGRITY_ALGO_TO_STR)) { in getSupportedIntegrityAlgorithms()