Home
last modified time | relevance | path

Searched refs:rsa (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
DCipherRSATest.java23 CipherRSAThread rsa = new CipherRSAThread("RSA", new int[] {512}, in test_RSAShortKey() local
28 rsa.launcher(); in test_RSAShortKey()
30 assertEquals(rsa.getFailureMessages(), 0, rsa.getTotalFailuresNumber()); in test_RSAShortKey()
35 CipherRSAThread rsa = new CipherRSAThread("RSA", new int[] {1024}, in disabled_test_RSALongKey() local
40 rsa.launcher(); in disabled_test_RSALongKey()
42 assertEquals(rsa.getFailureMessages(), 0, rsa.getTotalFailuresNumber()); in disabled_test_RSALongKey()
47 CipherRSAThread rsa = new CipherRSAThread("RSA", new int[] {2048}, in disabled_test_RSAXXXLKey() local
51 rsa.launcher(); in disabled_test_RSAXXXLKey()
53 assertEquals(rsa.getFailureMessages(), 0, rsa.getTotalFailuresNumber()); in disabled_test_RSAXXXLKey()
57 CipherRSAThread rsa = new CipherRSAThread("RSA", new int[] {1024}, in test_RSANoPadding() local
[all …]
/libcore/support/src/test/java/tests/resources/x509/
Dcreate.sh25 openssl req -config "$DIR/default.cnf" -new -key "$DIR/privkey.pem" -nodes -batch > /tmp/cert-rsa-r…
26 openssl req -in /tmp/cert-rsa-req.pem -pubkey -noout | openssl rsa -pubin -pubout -outform der > "$…
27 …$DIR/privkey.pem" -outform d -set_serial -99999999999999999999 < /tmp/cert-rsa-req.pem > "$DIR/cer…
28 rm /tmp/cert-rsa-req.pem
97 openssl x509 -inform d -in "$DIR/cert-rsa.der" -out /tmp/cert-rsa.pem
98 openssl ca -revoke /tmp/cert-rsa.pem -keyfile /tmp/cakey.pem -cert /tmp/cacert.pem -config "$DIR/de…
99 openssl ca -gencrl -crlhours 70 -keyfile /tmp/cakey.pem -cert /tmp/cacert.pem -out /tmp/crl-rsa.pem…
100 openssl crl -in /tmp/crl-rsa.pem -outform d -out "$DIR/crl-rsa.der"
108 …1Z -crldays 30 -keyfile /tmp/cakey.pem -cert /tmp/cacert.pem -out /tmp/crl-rsa-dsa.pem -config "$D…
110 openssl crl -in /tmp/crl-rsa-dsa.pem -outform d -out "$DIR/crl-rsa-dsa.der"
[all …]
/libcore/ojluni/src/main/java/java/net/
DURI.java3066 void parse(boolean rsa) throws URISyntaxException { in parse() argument
3067 requireServerAuthority = rsa; in parse()