223 /*
224 * CertPathBuilder
225 */
226 map.put("CertPathBuilder.PKIX",
227 "sun.security.provider.certpath.SunCertPathBuilder");
228 map.put("CertPathBuilder.PKIX ValidationAlgorithm",
229 "RFC3280");
230
231 /*
232 * CertPathValidator
233 */
234 map.put("CertPathValidator.PKIX",
235 "sun.security.provider.certpath.PKIXCertPathValidator");
236 map.put("CertPathValidator.PKIX ValidationAlgorithm",
237 "RFC3280");
238
239 /*
240 * CertStores
241 */
242 map.put("CertStore.LDAP",
243 "sun.security.provider.certpath.LDAPCertStore");
244 map.put("CertStore.LDAP LDAPSchema", "RFC2587");
245 map.put("CertStore.Collection",
246 "sun.security.provider.certpath.CollectionCertStore");
247 map.put("CertStore.com.sun.security.IndexedCollection",
248 "sun.security.provider.certpath.IndexedCollectionCertStore");
249
250 /*
251 * KeySize
252 */
253 map.put("Signature.NONEwithDSA KeySize", "1024");
254 map.put("Signature.SHA1withDSA KeySize", "1024");
255 map.put("Signature.SHA224withDSA KeySize", "2048");
256 map.put("Signature.SHA256withDSA KeySize", "2048");
257
258 map.put("KeyPairGenerator.DSA KeySize", "2048");
259 map.put("AlgorithmParameterGenerator.DSA KeySize", "2048");
260
261 /*
262 * Implementation type: software or hardware
263 */
|
223 /*
224 * CertPathBuilder
225 */
226 map.put("CertPathBuilder.PKIX",
227 "sun.security.provider.certpath.SunCertPathBuilder");
228 map.put("CertPathBuilder.PKIX ValidationAlgorithm",
229 "RFC3280");
230
231 /*
232 * CertPathValidator
233 */
234 map.put("CertPathValidator.PKIX",
235 "sun.security.provider.certpath.PKIXCertPathValidator");
236 map.put("CertPathValidator.PKIX ValidationAlgorithm",
237 "RFC3280");
238
239 /*
240 * CertStores
241 */
242 map.put("CertStore.LDAP",
243 "sun.security.provider.certpath.ldap.LDAPCertStore");
244 map.put("CertStore.LDAP LDAPSchema", "RFC2587");
245 map.put("CertStore.Collection",
246 "sun.security.provider.certpath.CollectionCertStore");
247 map.put("CertStore.com.sun.security.IndexedCollection",
248 "sun.security.provider.certpath.IndexedCollectionCertStore");
249
250 /*
251 * KeySize
252 */
253 map.put("Signature.NONEwithDSA KeySize", "1024");
254 map.put("Signature.SHA1withDSA KeySize", "1024");
255 map.put("Signature.SHA224withDSA KeySize", "2048");
256 map.put("Signature.SHA256withDSA KeySize", "2048");
257
258 map.put("KeyPairGenerator.DSA KeySize", "2048");
259 map.put("AlgorithmParameterGenerator.DSA KeySize", "2048");
260
261 /*
262 * Implementation type: software or hardware
263 */
|