Searched refs:algorithms (Results 1 – 6 of 6) sorted by relevance
105 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); in provide() local106 if (algorithms == null) { in provide()107 algorithms = new HashSet(); in provide()108 PROVIDER_ALGORITHMS.put(type, algorithms); in provide()111 algorithms.add(algorithm.toUpperCase(Locale.ROOT))); in provide()114 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); in unprovide() local115 assertNotNull(algorithms); in unprovide()116 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase(Locale.ROOT))); in unprovide()117 if (algorithms.isEmpty()) { in unprovide()
66 for (List<String> algorithms : digestAlgs.values()) { in test_constructor()67 for (String algorithm : algorithms) { in test_constructor()337 for (List<String> algorithms : digestAlgs.values()) { in test_getInstanceLjava_lang_StringLjava_lang_String()338 for (String algorithm : algorithms) { in test_getInstanceLjava_lang_StringLjava_lang_String()
56 String [] algorithms = { "SHA256WITHRSA", "NONEWITHDSA", "SHA384WITHRSA", in testConstructor() local59 for (int i = 0; i < algorithms.length; i ++) { in testConstructor()60 MySignature1 s = new MySignature1(algorithms[i]); in testConstructor()61 assertEquals(algorithms[i],s.getAlgorithm()); in testConstructor()
137 String[] algorithms = { in testGetInstanceStringProvider() local158 for (int i = 0; i < algorithms.length; i++) { in testGetInstanceStringProvider()159 String algorithm = algorithms[i]; in testGetInstanceStringProvider()
52 # Default KeyManagerFactory and TrustManagerFactory algorithms.
144 …description: "BouncyCastle allows unrecognized algorithms, but RI does not, not clear if this is a…