Home
last modified time | relevance | path

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

/external/conscrypt/openjdk-integ-tests/src/test/java/libcore/javax/net/ssl/
DTrustManagerFactoryTest.java51 private static final String[] KEY_TYPES = new String[] {"RSA", "DSA", "EC", "EC_RSA"}; field in TrustManagerFactoryTest
59 .keyAlgorithms(KEY_TYPES) in getTestKeyStore()
158 for (String keyType : KEY_TYPES) { in test_X509TrustManager()
165 = issuers.length > (StandardNames.IS_RI ? 1 : 2) * KEY_TYPES.length; in test_X509TrustManager()
DKeyManagerFactoryTest.java156 StandardNames.KEY_TYPES.toArray(new String[StandardNames.KEY_TYPES.size()]);
/external/conscrypt/libcore-stub/src/main/java/libcore/java/security/
DStandardNames.java593 public static final Set<String> KEY_TYPES = new HashSet<String>( field in StandardNames
598 KEY_TYPES.remove("DH_RSA");
599 KEY_TYPES.remove("DH_DSA");
/external/conscrypt/testing/src/main/java/libcore/javax/net/ssl/
DTestKeyManager.java82 if (!StandardNames.KEY_TYPES.contains(keyType)) { in assertKeyType()