OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wrapPlatformKey
(Results
1 - 5
of
5
) sorted by null
/external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECPrivateKey.java
63
public static OpenSSLKey
wrapPlatformKey
(ECPrivateKey ecPrivateKey) throws InvalidKeyException {
70
return
wrapPlatformKey
(ecPrivateKey, group);
73
private static OpenSSLKey
wrapPlatformKey
(ECPrivateKey ecPrivateKey,
89
return
wrapPlatformKey
(ecPrivateKey, group);
OpenSSLDSAPrivateKey.java
71
return
wrapPlatformKey
(dsaPrivateKey);
87
public static OpenSSLKey
wrapPlatformKey
(DSAPrivateKey dsaPrivateKey) {
OpenSSLKey.java
105
return OpenSSLRSAPrivateKey.
wrapPlatformKey
((RSAPrivateKey) key);
107
return OpenSSLDSAPrivateKey.
wrapPlatformKey
((DSAPrivateKey) key);
109
return OpenSSLECPrivateKey.
wrapPlatformKey
((ECPrivateKey) key);
OpenSSLRSAPrivateKey.java
92
protected static OpenSSLKey
wrapPlatformKey
(RSAPrivateKey rsaPrivateKey)
108
return
wrapPlatformKey
(rsaPrivateKey);
OpenSSLRSAPrivateCrtKey.java
101
return
wrapPlatformKey
(rsaPrivateKey);
Completed in 2360 milliseconds