OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OpenSSLKey
(Results
26 - 35
of
35
) sorted by null
1
2
/external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECKeyFactory.java
47
return
OpenSSLKey
.getPublicKey((X509EncodedKeySpec) keySpec, NativeCrypto.EVP_PKEY_EC);
62
return
OpenSSLKey
.getPrivateKey((PKCS8EncodedKeySpec) keySpec,
OpenSSLRSAKeyFactory.java
47
return
OpenSSLKey
.getPublicKey((X509EncodedKeySpec) keySpec, NativeCrypto.EVP_PKEY_RSA);
64
return
OpenSSLKey
.getPrivateKey((PKCS8EncodedKeySpec) keySpec,
OpenSSLSignatureRawRSA.java
37
private
OpenSSLKey
key;
OpenSSLX509CRL.java
196
private void verifyOpenSSL(
OpenSSLKey
pkey) throws CRLException, NoSuchAlgorithmException,
227
OpenSSLKey
pkey = ((OpenSSLKeyHolder) key).getOpenSSLKey();
SSLParametersImpl.java
385
void setTlsChannelId(long sslNativePointer,
OpenSSLKey
channelIdPrivateKey)
440
final
OpenSSLKey
key;
442
key =
OpenSSLKey
.fromPrivateKey(privateKey);
[
all
...]
OpenSSLSocketImpl.java
157
OpenSSLKey
channelIdPrivateKey;
[
all
...]
OpenSSLCipherRSA.java
50
private
OpenSSLKey
key;
OpenSSLEngineImpl.java
120
OpenSSLKey
channelIdPrivateKey;
/external/conscrypt/src/platform/java/org/conscrypt/
Platform.java
124
public static
OpenSSLKey
wrapRsaKey(PrivateKey key) {
/external/conscrypt/src/test/java/org/conscrypt/
NativeCryptoTest.java
74
private static
OpenSSLKey
SERVER_PRIVATE_KEY;
77
private static
OpenSSLKey
CLIENT_PRIVATE_KEY;
81
private static
OpenSSLKey
CHANNEL_ID_PRIVATE_KEY;
89
private static
OpenSSLKey
getServerPrivateKey() {
99
private static
OpenSSLKey
getClientPrivateKey() {
125
SERVER_PRIVATE_KEY =
OpenSSLKey
.fromPrivateKey(serverPrivateKeyEntry.getPrivateKey());
132
CLIENT_PRIVATE_KEY =
OpenSSLKey
.fromPrivateKey(clientPrivateKeyEntry.getPrivateKey());
643
private
OpenSSLKey
channelIdPrivateKey;
[
all
...]
Completed in 234 milliseconds
1
2