Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DIkev2VpnProfile.java250 private static void validateAllowedAlgorithms(@NonNull List<String> algorithmNames) { in validateAllowedAlgorithms() argument
252 if (algorithmNames.contains(IpSecAlgorithm.AUTH_HMAC_MD5) in validateAllowedAlgorithms()
253 || algorithmNames.contains(IpSecAlgorithm.AUTH_HMAC_SHA1)) { in validateAllowedAlgorithms()
258 if (hasAeadAlgorithms(algorithmNames) || hasNormalModeAlgorithms(algorithmNames)) { in validateAllowedAlgorithms()
270 public static boolean hasAeadAlgorithms(@NonNull List<String> algorithmNames) { in hasAeadAlgorithms() argument
271 return algorithmNames.contains(IpSecAlgorithm.AUTH_CRYPT_AES_GCM); in hasAeadAlgorithms()
279 public static boolean hasNormalModeAlgorithms(@NonNull List<String> algorithmNames) { in hasNormalModeAlgorithms() argument
280 final boolean hasCrypt = algorithmNames.contains(IpSecAlgorithm.CRYPT_AES_CBC); in hasNormalModeAlgorithms()
281 final boolean hasAuth = algorithmNames.contains(IpSecAlgorithm.AUTH_HMAC_SHA256) in hasNormalModeAlgorithms()
282 || algorithmNames.contains(IpSecAlgorithm.AUTH_HMAC_SHA384) in hasNormalModeAlgorithms()
[all …]