Searched refs:EVP_PKEY (Results 1 - 25 of 190) sorted by relevance

12345678

/macosx-10.10/OpenSSL098-52/src/demos/maurice/
H A Dloadkeys.h15 EVP_PKEY * ReadPublicKey(const char *certfile);
16 EVP_PKEY *ReadPrivateKey(const char *keyfile);
H A Dloadkeys.c25 EVP_PKEY * ReadPublicKey(const char *certfile)
29 EVP_PKEY *pkey;
54 EVP_PKEY *ReadPrivateKey(const char *keyfile)
57 EVP_PKEY *pkey;
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_pkey.h31 Data_Get_Struct((obj), EVP_PKEY, (pkey));\
53 VALUE ossl_pkey_new(EVP_PKEY *);
55 EVP_PKEY *GetPKeyPtr(VALUE);
56 EVP_PKEY *DupPKeyPtr(VALUE);
57 EVP_PKEY *GetPrivPKeyPtr(VALUE);
58 EVP_PKEY *DupPrivPKeyPtr(VALUE);
67 VALUE ossl_rsa_new(EVP_PKEY *);
76 VALUE ossl_dsa_new(EVP_PKEY *);
87 VALUE ossl_dh_new(EVP_PKEY *);
99 VALUE ossl_ec_new(EVP_PKEY *);
[all...]
H A Dossl_pkey.c76 ossl_pkey_new(EVP_PKEY *pkey)
109 EVP_PKEY *pkey;
142 EVP_PKEY *pkey;
173 EVP_PKEY *
176 EVP_PKEY *pkey;
183 EVP_PKEY *
186 EVP_PKEY *pkey;
196 EVP_PKEY *
199 EVP_PKEY *pkey;
207 EVP_PKEY *
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/pem/
H A Dpem_pk8.c69 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder,
73 static int do_pk8pkey_fp(FILE *bp, EVP_PKEY *x, int isder,
84 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
91 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
98 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
105 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
112 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc,
152 EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
157 EVP_PKEY *re
[all...]
H A Dpem_pkey.c70 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
76 EVP_PKEY *ret=NULL;
94 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
118 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
134 EVP_PKEY *PEM_read_PrivateKey(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u)
137 EVP_PKEY *ret;
H A Dpem_all.c131 static RSA *pkey_get_rsa(EVP_PKEY *key, RSA **rsa);
134 static DSA *pkey_get_dsa(EVP_PKEY *key, DSA **dsa);
138 static EC_KEY *pkey_get_eckey(EVP_PKEY *key, EC_KEY **eckey);
157 * For private keys we read in an EVP_PKEY structure with
163 static RSA *pkey_get_rsa(EVP_PKEY *key, RSA **rsa)
180 EVP_PKEY *pktmp;
190 EVP_PKEY *pktmp;
203 EVP_PKEY *k;
220 EVP_PKEY *k;
247 static DSA *pkey_get_dsa(EVP_PKEY *ke
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/asn1/
H A Dd2i_pr.c75 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp,
78 EVP_PKEY *ret;
138 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp,
H A Dd2i_pu.c75 EVP_PKEY *d2i_PublicKey(int type, EVP_PKEY **a, const unsigned char **pp,
78 EVP_PKEY *ret;
H A Di2d_pu.c74 int i2d_PublicKey(EVP_PKEY *a, unsigned char **pp)
/macosx-10.10/OpenSSL098-52/src/crypto/evp/
H A Dp_lib.c77 static void EVP_PKEY_free_it(EVP_PKEY *x);
79 int EVP_PKEY_bits(EVP_PKEY *pkey)
118 int EVP_PKEY_size(EVP_PKEY *pkey)
139 int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
164 int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
211 int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
234 int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
261 int EVP_PKEY_cmp(const EVP_PKEY *
[all...]
H A Dp_dec.c70 EVP_PKEY *priv)
H A Dp_enc.c70 EVP_PKEY *pubk)
H A Devp.h152 } /* EVP_PKEY */;
606 EVP_PKEY *pkey);
609 unsigned int siglen,EVP_PKEY *pkey);
613 EVP_PKEY *priv);
618 EVP_PKEY **pubk, int npubk);
845 EVP_PKEY *private_key);
848 EVP_PKEY *pub_key);
850 int EVP_PKEY_bits(EVP_PKEY *pkey);
851 int EVP_PKEY_size(EVP_PKEY *pkey);
852 int EVP_PKEY_assign(EVP_PKEY *pke
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/x509/
H A Dx509type.c65 int X509_certificate_type(X509 *x, EVP_PKEY *pkey)
67 EVP_PKEY *pk;
H A Dx_all.c74 int X509_verify(X509 *a, EVP_PKEY *r)
80 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r)
86 int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r)
92 int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r)
98 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md)
105 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pkey, const EVP_MD *md)
111 int X509_CRL_sign(X509_CRL *x, EVP_PKEY *pkey, const EVP_MD *md)
118 int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *x, EVP_PKEY *pkey, const EVP_MD *md)
448 int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key)
459 int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pke
[all...]
H A Dx509rset.c78 int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey)
H A Dx509.h164 EVP_PKEY *pkey;
471 EVP_PKEY *dec_pkey;
754 int X509_verify(X509 *a, EVP_PKEY *r);
756 int X509_REQ_verify(X509_REQ *a, EVP_PKEY *r);
757 int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r);
758 int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *a, EVP_PKEY *r);
762 EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *x);
763 int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *x, EVP_PKEY *pkey);
769 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
770 int X509_REQ_sign(X509_REQ *x, EVP_PKEY *pke
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Devp.h190 } EVP_PKEY; typedef in typeref:struct:evp_pkey_st
526 EVP_PKEY *pkey);
529 unsigned int siglen,EVP_PKEY *pkey);
532 int ekl,unsigned char *iv,EVP_PKEY *priv);
536 int *ekl, unsigned char *iv,EVP_PKEY **pubk, int npubk);
630 int enc_key_len,EVP_PKEY *private_key);
632 unsigned char *key,int key_len,EVP_PKEY *pub_key);
634 int EVP_PKEY_bits(EVP_PKEY *pkey);
635 int EVP_PKEY_size(EVP_PKEY *pkey);
636 int EVP_PKEY_assign(EVP_PKEY *pke
[all...]
/macosx-10.10/apache-793/httpd/modules/ssl/
H A Dssl_util_ssl.h63 EVP_PKEY *SSL_read_PrivateKey(const char *, EVP_PKEY **, pem_password_cb *, void *);
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-pem.h71 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u);
81 EVP_PKEY *PEM_read_PUBKEY(FILE *fp, EVP_PKEY **pkey, pem_password_cb *cb, void *u);
/macosx-10.10/OpenSSL098-52/src/crypto/engine/
H A Deng_pkey.c96 EVP_PKEY *ENGINE_load_private_key(ENGINE *e, const char *key_id,
99 EVP_PKEY *pkey;
132 EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
135 EVP_PKEY *pkey;
169 STACK_OF(X509_NAME) *ca_dn, X509 **pcert, EVP_PKEY **ppkey,
/macosx-10.10/OpenSSL098-52/src/crypto/pkcs7/
H A Dpk7_enc.c70 PKCS7_add_signer(PKCS7 *p7,X509 *cert,EVP_PKEY *key);
/macosx-10.10/OpenSSL098-52/src/demos/x509/
H A Dmkreq.c16 int mkreq(X509_REQ **x509p, EVP_PKEY **pkeyp, int bits, int serial, int days);
23 EVP_PKEY *pkey=NULL;
60 int mkreq(X509_REQ **req, EVP_PKEY **pkeyp, int bits, int serial, int days)
63 EVP_PKEY *pk;
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Devp.h152 } /* EVP_PKEY */;
606 EVP_PKEY *pkey);
609 unsigned int siglen,EVP_PKEY *pkey);
613 EVP_PKEY *priv);
618 EVP_PKEY **pubk, int npubk);
845 EVP_PKEY *private_key);
848 EVP_PKEY *pub_key);
850 int EVP_PKEY_bits(EVP_PKEY *pkey);
851 int EVP_PKEY_size(EVP_PKEY *pkey);
852 int EVP_PKEY_assign(EVP_PKEY *pke
[all...]

Completed in 608 milliseconds

12345678