Searched defs:KeyType (Results 1 - 1 of 1) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/util/
H A DPlatform.java101 public static enum KeyType enum in class:Platform
110 public final static KeyType DEFAULT = RSA;
116 private KeyType(String keyAlgorithm, int keySize, String signatureAlgorithm) method in class:Platform.KeyType
140 * Get a KeyType based on the alias name.
146 public static KeyType getTypeOrDefault(String alias)
150 return KeyType.valueOf(alias.substring(alias.lastIndexOf('-') + 1).toUpperCase());
154 return KeyType.DEFAULT;
329 String ksType, String ksPath, KeyType keyType, String alias, char[] pwd, String dn,
556 String ksPath, KeyType keyType, String alias, char[] pwd, String dn, int validity)

Completed in 26 milliseconds