Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DSaProposal.java168 private static final SparseArray<String> SUPPORTED_INTEGRITY_ALGO_TO_STR; field in SaProposal
171 SUPPORTED_INTEGRITY_ALGO_TO_STR = new SparseArray<>();
172 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_NONE, "AUTH_NONE"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
173 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_HMAC_SHA1_96, "AUTH_HMAC_SHA1_96"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
174 SUPPORTED_INTEGRITY_ALGO_TO_STR.put(INTEGRITY_ALGORITHM_AES_XCBC_96, "AUTH_AES_XCBC_96"); in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
175 SUPPORTED_INTEGRITY_ALGO_TO_STR.put( in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
177 SUPPORTED_INTEGRITY_ALGO_TO_STR.put( in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
179 SUPPORTED_INTEGRITY_ALGO_TO_STR.put( in SUPPORTED_INTEGRITY_ALGO_TO_STR.put()
516 return SUPPORTED_INTEGRITY_ALGO_TO_STR.get(algorithm) != null; in isSupportedIntegrityAlgorithm()
561 return SUPPORTED_INTEGRITY_ALGO_TO_STR.get(algorithm); in getIntegrityAlgorithmString()