Home | History | Annotate | Download | only in conscrypt

Lines Matching refs:pkey

90     static native int EVP_PKEY_type(NativeRef.EVP_PKEY pkey);
96 static native void EVP_PKEY_free(long pkey);
100 static native byte[] EVP_marshal_private_key(NativeRef.EVP_PKEY pkey);
104 static native byte[] EVP_marshal_public_key(NativeRef.EVP_PKEY pkey);
118 static native int RSA_size(NativeRef.EVP_PKEY pkey);
121 int flen, byte[] from, byte[] to, NativeRef.EVP_PKEY pkey, int padding);
123 static native int RSA_public_decrypt(int flen, byte[] from, byte[] to, NativeRef.EVP_PKEY pkey,
127 int flen, byte[] from, byte[] to, NativeRef.EVP_PKEY pkey, int padding);
129 static native int RSA_private_decrypt(int flen, byte[] from, byte[] to, NativeRef.EVP_PKEY pkey,
199 static native int ECDSA_size(NativeRef.EVP_PKEY pkey);
201 static native int ECDSA_sign(byte[] data, byte[] sig, NativeRef.EVP_PKEY pkey);
203 static native int ECDSA_verify(byte[] data, byte[] sig, NativeRef.EVP_PKEY pkey);
257 static native long EVP_PKEY_encrypt_init(NativeRef.EVP_PKEY pkey) throws InvalidKeyException;
263 static native long EVP_PKEY_decrypt_init(NativeRef.EVP_PKEY pkey) throws InvalidKeyException;
871 static native void SSL_set1_tls_channel_id(long ssl, NativeSsl ssl_holder, NativeRef.EVP_PKEY pkey);
878 * @param pkey a reference to the private key.
882 NativeRef.EVP_PKEY pkey) throws SSLException;