Searched refs:algorithmNames (Results 1 – 1 of 1) sorted by relevance
250 private static void validateAllowedAlgorithms(@NonNull List<String> algorithmNames) { in validateAllowedAlgorithms() argument252 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() argument271 return algorithmNames.contains(IpSecAlgorithm.AUTH_CRYPT_AES_GCM); in hasAeadAlgorithms()279 public static boolean hasNormalModeAlgorithms(@NonNull List<String> algorithmNames) { in hasNormalModeAlgorithms() argument280 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 …]