OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OpenSSLRSAPrivateKey
(Results
1 - 8
of
8
) sorted by null
/libcore/crypto/src/main/java/org/conscrypt/
OpenSSLRSAPrivateKey.java
29
public class
OpenSSLRSAPrivateKey
implements RSAPrivateKey, OpenSSLKeyHolder {
40
OpenSSLRSAPrivateKey
(OpenSSLKey key) {
44
OpenSSLRSAPrivateKey
(OpenSSLKey key, byte[][] params) {
55
public
OpenSSLRSAPrivateKey
(RSAPrivateKeySpec rsaKeySpec) throws InvalidKeySpecException {
84
static
OpenSSLRSAPrivateKey
getInstance(OpenSSLKey key) {
89
return new
OpenSSLRSAPrivateKey
(key, params);
194
if (o instanceof
OpenSSLRSAPrivateKey
) {
195
OpenSSLRSAPrivateKey
other = (
OpenSSLRSAPrivateKey
) o;
225
final StringBuilder sb = new StringBuilder("
OpenSSLRSAPrivateKey
{");
[
all
...]
OpenSSLSignatureRawRSA.java
94
if (privateKey instanceof
OpenSSLRSAPrivateKey
) {
95
OpenSSLRSAPrivateKey
rsaPrivateKey = (
OpenSSLRSAPrivateKey
) privateKey;
102
key =
OpenSSLRSAPrivateKey
.getInstance(rsaPrivateKey);
OpenSSLRSAKeyPairGenerator.java
47
PrivateKey privKey =
OpenSSLRSAPrivateKey
.getInstance(key);
OpenSSLCipherRSA.java
163
if (key instanceof
OpenSSLRSAPrivateKey
) {
164
OpenSSLRSAPrivateKey
rsaPrivateKey = (
OpenSSLRSAPrivateKey
) key;
174
this.key =
OpenSSLRSAPrivateKey
.getInstance(rsaPrivateKey);
OpenSSLRSAPrivateCrtKey.java
30
public class OpenSSLRSAPrivateCrtKey extends
OpenSSLRSAPrivateKey
implements RSAPrivateCrtKey {
200
if (o instanceof
OpenSSLRSAPrivateKey
) {
201
OpenSSLRSAPrivateKey
other = (
OpenSSLRSAPrivateKey
) o;
OpenSSLRSAKeyFactory.java
62
return new
OpenSSLRSAPrivateKey
((RSAPrivateKeySpec) keySpec);
168
if ((key instanceof OpenSSLRSAPublicKey) || (key instanceof
OpenSSLRSAPrivateKey
)) {
OpenSSLKey.java
118
return new
OpenSSLRSAPrivateKey
(this);
OpenSSLSignature.java
167
key =
OpenSSLRSAPrivateKey
.getInstance(rsaPrivateKey);
Completed in 147 milliseconds