HomeSort by relevance Sort by last modified time
    Searched refs:EVP_PKEY (Results 1 - 25 of 324) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
asn1_locl.h 83 int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub);
84 int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk);
85 int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b);
86 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
89 int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf);
90 int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk);
91 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
94 int (*pkey_size)(const EVP_PKEY *pk);
95 int (*pkey_bits)(const EVP_PKEY *pk)
    [all...]
ameth_lib.c 283 const EVP_PKEY_ASN1_METHOD* EVP_PKEY_get0_asn1(EVP_PKEY *pkey)
404 int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub),
405 int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk),
406 int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
407 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
409 int (*pkey_size)(const EVP_PKEY *pk),
410 int (*pkey_bits)(const EVP_PKEY *pk))
421 int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf),
422 int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk)
    [all...]
  /external/openssl/crypto/asn1/
asn1_locl.h 83 int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub);
84 int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk);
85 int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b);
86 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
89 int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf);
90 int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk);
91 int (*priv_print)(BIO *out, const EVP_PKEY *pkey, int indent,
94 int (*pkey_size)(const EVP_PKEY *pk);
95 int (*pkey_bits)(const EVP_PKEY *pk)
    [all...]
ameth_lib.c 283 const EVP_PKEY_ASN1_METHOD* EVP_PKEY_get0_asn1(EVP_PKEY *pkey)
404 int (*pub_decode)(EVP_PKEY *pk, X509_PUBKEY *pub),
405 int (*pub_encode)(X509_PUBKEY *pub, const EVP_PKEY *pk),
406 int (*pub_cmp)(const EVP_PKEY *a, const EVP_PKEY *b),
407 int (*pub_print)(BIO *out, const EVP_PKEY *pkey, int indent,
409 int (*pkey_size)(const EVP_PKEY *pk),
410 int (*pkey_bits)(const EVP_PKEY *pk))
421 int (*priv_decode)(EVP_PKEY *pk, PKCS8_PRIV_KEY_INFO *p8inf),
422 int (*priv_encode)(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pk)
    [all...]
  /external/chromium/net/base/
openssl_private_key_store.h 12 typedef struct evp_pkey_st EVP_PKEY;
41 virtual bool StorePrivateKey(const GURL& url, EVP_PKEY* pkey) = 0;
45 virtual EVP_PKEY* FetchPrivateKey(EVP_PKEY* public_key) = 0;
openssl_memory_private_key_store.cc 30 for (std::vector<EVP_PKEY*>::iterator it = keys_.begin();
36 virtual bool StorePrivateKey(const GURL& url, EVP_PKEY* pkey) {
43 virtual EVP_PKEY* FetchPrivateKey(EVP_PKEY* pkey) {
45 for (std::vector<EVP_PKEY*>::iterator it = keys_.begin();
54 std::vector<EVP_PKEY*> keys_;
  /external/chromium_org/net/ssl/
openssl_client_key_store.h 35 inline void operator()(EVP_PKEY* ptr) const {
40 typedef scoped_ptr<EVP_PKEY, EVP_PKEY_Deleter> ScopedEVP_PKEY;
48 // |private_key| is an OpenSSL EVP_PKEY that corresponds to the
54 EVP_PKEY* private_key);
77 void AddKeyPair(EVP_PKEY* pub_key, EVP_PKEY* private_key);
81 // EVP_PKEY objects, with appropriate ownership.
84 explicit KeyPair(EVP_PKEY* pub_key, EVP_PKEY* priv_key);
89 EVP_PKEY* public_key
    [all...]
openssl_client_key_store.cc 20 // Increment the reference count of a given EVP_PKEY. This function
25 EVP_PKEY* CopyEVP_PKEY(EVP_PKEY* key) {
31 // Return the EVP_PKEY holding the public key of a given certificate.
33 // Returns a scoped EVP_PKEY for it.
37 EVP_PKEY* pkey =
52 OpenSSLClientKeyStore::KeyPair::KeyPair(EVP_PKEY* pub_key,
53 EVP_PKEY* priv_key) {
69 EVP_PKEY* old_public_key = public_key;
70 EVP_PKEY* old_private_key = private_key
    [all...]
  /external/chromium_org/net/base/
openssl_private_key_store.h 11 typedef struct evp_pkey_st EVP_PKEY;
35 static bool StoreKeyPair(const GURL& url, EVP_PKEY* pkey);
43 static bool HasPrivateKey(EVP_PKEY* pub_key);
openssl_private_key_store_memory.cc 20 // a single EVP_PKEY object. This is intentionally distinct from
32 for (std::vector<EVP_PKEY*>::iterator it = keys_.begin();
38 bool StoreKeyPair(EVP_PKEY* pkey) {
45 bool HasPrivateKey(EVP_PKEY* pkey) {
47 for (std::vector<EVP_PKEY*>::iterator it = keys_.begin();
56 std::vector<EVP_PKEY*> keys_;
65 EVP_PKEY* pkey) {
69 bool OpenSSLPrivateKeyStore::HasPrivateKey(EVP_PKEY* pub_key) {
  /external/chromium_org/net/android/
keystore_openssl.h 21 // Create a custom OpenSSL EVP_PKEY instance that wraps a platform
31 // Returns a new EVP_PKEY* object with the following features:
37 // the returned EVP_PKEY instance can be used from any thread.
43 NET_EXPORT EVP_PKEY* GetOpenSSLPrivateKeyWrapper(jobject private_key);
  /external/chromium_org/third_party/openssl/openssl/crypto/cmac/
cm_ameth.c 64 static int cmac_size(const EVP_PKEY *pkey)
69 static void cmac_key_free(EVP_PKEY *pkey)
  /external/openssl/crypto/cmac/
cm_ameth.c 64 static int cmac_size(const EVP_PKEY *pkey)
69 static void cmac_key_free(EVP_PKEY *pkey)
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
p_lib.c 83 static void EVP_PKEY_free_it(EVP_PKEY *x);
85 int EVP_PKEY_bits(EVP_PKEY *pkey)
92 int EVP_PKEY_size(EVP_PKEY *pkey)
99 int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
124 int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
143 int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
150 int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
159 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b
    [all...]
evp_pkey.c 0 /* evp_pkey.c */
68 EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8)
70 EVP_PKEY *pkey = NULL;
112 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey)
119 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken)
182 /* EVP_PKEY attribute functions */
184 int EVP_PKEY_get_attr_count(const EVP_PKEY *key)
189 int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid,
195 int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, ASN1_OBJECT *obj,
201 X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc
    [all...]
evp.h 152 } /* EVP_PKEY */;
610 EVP_PKEY *pkey);
613 unsigned int siglen,EVP_PKEY *pkey);
616 const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey);
621 const EVP_MD *type, ENGINE *e, EVP_PKEY *pkey);
627 EVP_PKEY *priv);
632 EVP_PKEY **pubk, int npubk);
    [all...]
  /external/openssl/crypto/evp/
p_lib.c 83 static void EVP_PKEY_free_it(EVP_PKEY *x);
85 int EVP_PKEY_bits(EVP_PKEY *pkey)
92 int EVP_PKEY_size(EVP_PKEY *pkey)
99 int EVP_PKEY_save_parameters(EVP_PKEY *pkey, int mode)
124 int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from)
143 int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey)
150 int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b)
159 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b
    [all...]
evp_pkey.c 0 /* evp_pkey.c */
68 EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8)
70 EVP_PKEY *pkey = NULL;
112 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey)
119 PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8_broken(EVP_PKEY *pkey, int broken)
182 /* EVP_PKEY attribute functions */
184 int EVP_PKEY_get_attr_count(const EVP_PKEY *key)
189 int EVP_PKEY_get_attr_by_NID(const EVP_PKEY *key, int nid,
195 int EVP_PKEY_get_attr_by_OBJ(const EVP_PKEY *key, ASN1_OBJECT *obj,
201 X509_ATTRIBUTE *EVP_PKEY_get_attr(const EVP_PKEY *key, int loc
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/hmac/
hm_ameth.c 70 static int hmac_size(const EVP_PKEY *pkey)
75 static void hmac_key_free(EVP_PKEY *pkey)
87 static int hmac_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
106 static int old_hmac_decode(EVP_PKEY *pkey,
117 static int old_hmac_encode(const EVP_PKEY *pkey, unsigned char **pder)
  /external/openssl/crypto/hmac/
hm_ameth.c 70 static int hmac_size(const EVP_PKEY *pkey)
75 static void hmac_key_free(EVP_PKEY *pkey)
87 static int hmac_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
106 static int old_hmac_decode(EVP_PKEY *pkey,
117 static int old_hmac_encode(const EVP_PKEY *pkey, unsigned char **pder)
  /system/security/keystore-engine/
methods.h 66 int ecdsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*);
70 int dsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*);
74 int rsa_pkey_setup(ENGINE *, EVP_PKEY*, const char*);
  /external/chromium_org/third_party/openssl/openssl/crypto/pem/
pem_pk8.c 69 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 *ret
    [all...]
pem_pkey.c 75 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
82 EVP_PKEY *ret=NULL;
94 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
118 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
140 int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
155 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x)
162 EVP_PKEY *ret=NULL;
184 if(*x) EVP_PKEY_free((EVP_PKEY *)*x)
    [all...]
  /external/openssl/crypto/pem/
pem_pk8.c 69 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 *ret
    [all...]
pem_pkey.c 75 EVP_PKEY *PEM_read_bio_PrivateKey(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
82 EVP_PKEY *ret=NULL;
94 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
118 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
140 int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
155 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x)
162 EVP_PKEY *ret=NULL;
184 if(*x) EVP_PKEY_free((EVP_PKEY *)*x)
    [all...]

Completed in 648 milliseconds

1 2 3 4 5 6 7 8 91011>>