OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyAlgorithms
(Results
1 - 6
of
6
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java
77
private static Hashtable
keyAlgorithms
= new Hashtable();
181
keyAlgorithms
.put(PKCSObjectIdentifiers.rsaEncryption, "RSA");
182
keyAlgorithms
.put(X9ObjectIdentifiers.id_dsa, "DSA");
460
if (
keyAlgorithms
.get(keyAlg.getObjectId()) != null)
462
String keyAlgorithm = (String)
keyAlgorithms
.get(keyAlg.getObjectId());
/libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java
217
private String[]
keyAlgorithms
= { "RSA" };
239
public Builder
keyAlgorithms
(String...
keyAlgorithms
) {
240
this.
keyAlgorithms
=
keyAlgorithms
;
324
for (String keyAlgorithm :
keyAlgorithms
) {
[
all
...]
/libcore/luni/src/test/java/libcore/javax/net/ssl/
TrustManagerFactoryTest.java
49
.
keyAlgorithms
(KEY_TYPES)
KeyManagerFactoryTest.java
48
.
keyAlgorithms
("RSA", "DSA", "EC", "EC_RSA")
SSLEngineTest.java
73
.
keyAlgorithms
("RSA", "DSA", "EC", "EC_RSA")
SSLSocketTest.java
65
.
keyAlgorithms
("RSA", "DSA", "EC", "EC_RSA")
[
all
...]
Completed in 102 milliseconds