Track change to Conscrypt

Change-Id: I8814fd0720acf09332927f184fdd9b2cdac4f413
This commit is contained in:
Kenny Root
2014-11-26 09:08:40 -08:00
parent fdbef4081d
commit 9d2d6b6b4b
4 changed files with 4 additions and 34 deletions

View File

@@ -379,7 +379,7 @@ public final class KeyChain {
*/
public static boolean isKeyAlgorithmSupported(String algorithm) {
final String algUpper = algorithm.toUpperCase(Locale.US);
return "DSA".equals(algUpper) || "EC".equals(algUpper) || "RSA".equals(algUpper);
return "EC".equals(algUpper) || "RSA".equals(algUpper);
}
/**