Home
last modified time | relevance | path

Searched refs:X509_PUBKEY (Results 1 – 25 of 77) sorted by relevance

1234

/netbsd/crypto/external/bsd/openssl.old/dist/crypto/x509/
H A Dx_pubkey.c33 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval; in pubkey_cb()
37 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval; in pubkey_cb()
53 ASN1_SEQUENCE_cb(X509_PUBKEY, pubkey_cb) = {
54 ASN1_SIMPLE(X509_PUBKEY, algor, X509_ALGOR),
56 } ASN1_SEQUENCE_END_cb(X509_PUBKEY, X509_PUBKEY)
58 IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY)
62 X509_PUBKEY *pk = NULL;
141 EVP_PKEY *X509_PUBKEY_get0(X509_PUBKEY *key) in X509_PUBKEY_get0()
169 EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key) in X509_PUBKEY_get()
187 X509_PUBKEY *xpk; in d2i_PUBKEY()
[all …]
H A Dx_req.c51 ASN1_SIMPLE(X509_REQ_INFO, pubkey, X509_PUBKEY),
/netbsd/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx_pubkey.c87 X509_PUBKEY *pubkey; in x509_pubkey_ex_free()
101 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval; in x509_pubkey_ex_populate()
113 X509_PUBKEY *ret; in x509_pubkey_ex_new_ex()
136 X509_PUBKEY *pubkey; in x509_pubkey_ex_d2i_ex()
160 pubkey = (X509_PUBKEY *)*pval; in x509_pubkey_ex_d2i_ex()
265 IMPLEMENT_ASN1_FUNCTIONS(X509_PUBKEY) in IMPLEMENT_EXTERN_ASN1()
269 X509_PUBKEY *pubkey = NULL; in IMPLEMENT_EXTERN_ASN1()
283 X509_PUBKEY *X509_PUBKEY_dup(const X509_PUBKEY *a) in X509_PUBKEY_dup()
319 X509_PUBKEY *pk = NULL; in X509_PUBKEY_set()
554 X509_PUBKEY *xpk = NULL; in i2d_PUBKEY()
[all …]
H A Dx_all.c627 X509_PUBKEY *d2i_X509_PUBKEY_fp(FILE *fp, X509_PUBKEY **xpk) in d2i_X509_PUBKEY_fp()
629 return ASN1_d2i_fp_of(X509_PUBKEY, X509_PUBKEY_new, d2i_X509_PUBKEY, in d2i_X509_PUBKEY_fp()
633 int i2d_X509_PUBKEY_fp(FILE *fp, const X509_PUBKEY *xpk) in i2d_X509_PUBKEY_fp()
635 return ASN1_i2d_fp_of(X509_PUBKEY, i2d_X509_PUBKEY, fp, xpk); in i2d_X509_PUBKEY_fp()
639 X509_PUBKEY *d2i_X509_PUBKEY_bio(BIO *bp, X509_PUBKEY **xpk) in d2i_X509_PUBKEY_bio()
641 return ASN1_d2i_bio_of(X509_PUBKEY, X509_PUBKEY_new, d2i_X509_PUBKEY, in d2i_X509_PUBKEY_bio()
645 int i2d_X509_PUBKEY_bio(BIO *bp, const X509_PUBKEY *xpk) in i2d_X509_PUBKEY_bio()
647 return ASN1_i2d_bio_of(X509_PUBKEY, i2d_X509_PUBKEY, bp, xpk); in i2d_X509_PUBKEY_bio()
/netbsd/crypto/external/bsd/openssl/dist/doc/man3/
H A DX509_PUBKEY_new.pod15 X509_PUBKEY *X509_PUBKEY_new_ex(OSSL_LIB_CTX *libctx, const char *propq);
16 X509_PUBKEY *X509_PUBKEY_new(void);
17 void X509_PUBKEY_free(X509_PUBKEY *a);
18 X509_PUBKEY *X509_PUBKEY_dup(const X509_PUBKEY *a);
20 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
21 EVP_PKEY *X509_PUBKEY_get0(const X509_PUBKEY *key);
22 EVP_PKEY *X509_PUBKEY_get(const X509_PUBKEY *key);
35 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
40 X509_ALGOR **pa, const X509_PUBKEY *pub);
41 int X509_PUBKEY_eq(X509_PUBKEY *a, X509_PUBKEY *b);
[all …]
H A DX509_get_pubkey.pod17 X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x);
22 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *x);
33 X509_get_X509_PUBKEY() returns an internal pointer to the B<X509_PUBKEY>
/netbsd/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DX509_PUBKEY_new.pod14 X509_PUBKEY *X509_PUBKEY_new(void);
15 void X509_PUBKEY_free(X509_PUBKEY *a);
17 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
18 EVP_PKEY *X509_PUBKEY_get0(X509_PUBKEY *key);
19 EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key);
30 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
35 X509_ALGOR **pa, X509_PUBKEY *pub);
39 The B<X509_PUBKEY> structure represents the ASN.1 B<SubjectPublicKeyInfo>
42 X509_PUBKEY_new() allocates and initializes an B<X509_PUBKEY> structure.
44 X509_PUBKEY_free() frees up B<X509_PUBKEY> structure B<a>. If B<a> is NULL
[all …]
H A DX509_get_pubkey.pod17 X509_PUBKEY *X509_get_X509_PUBKEY(X509 *x);
22 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *x);
33 X509_get_X509_PUBKEY() returns an internal pointer to the B<X509_PUBKEY>
/netbsd/crypto/external/bsd/openssl/dist/include/crypto/
H A Dx509.h67 X509_PUBKEY *pubkey; /* public key of request */
167 X509_PUBKEY *key;
332 const X509_PUBKEY *key);
334 ASN1_OCTET_STRING *ossl_x509_pubkey_hash(X509_PUBKEY *pubkey);
336 X509_PUBKEY *ossl_d2i_X509_PUBKEY_INTERNAL(const unsigned char **pp,
338 void ossl_X509_PUBKEY_INTERNAL_free(X509_PUBKEY *xpub);
H A Dasn1.h29 int (*pub_decode) (EVP_PKEY *pk, const X509_PUBKEY *pub);
30 int (*pub_encode) (X509_PUBKEY *pub, const EVP_PKEY *pk);
/netbsd/crypto/external/bsd/openssl/dist/crypto/crmf/
H A Dcrmf_local.h241 X509_PUBKEY *publicKey;
315 X509_PUBKEY *publicKey;
354 X509_PUBKEY *protocolEncrKey;
H A Dcrmf_asn.c117 ASN1_SIMPLE(OSSL_CRMF_POPOSIGNINGKEYINPUT, publicKey, X509_PUBKEY)
158 value.protocolEncrKey, X509_PUBKEY)),
201 ASN1_IMP_OPT(OSSL_CRMF_CERTTEMPLATE, publicKey, X509_PUBKEY, 6),
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/ct/
H A Dct_sct_ctx.c194 __owur static int ct_public_key_hash(X509_PUBKEY *pkey, unsigned char **hash, in ct_public_key_hash()
238 int SCT_CTX_set1_issuer_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey) in SCT_CTX_set1_issuer_pubkey()
243 int SCT_CTX_set1_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey) in SCT_CTX_set1_pubkey()
H A Dct_local.h149 __owur int SCT_CTX_set1_issuer_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey);
155 __owur int SCT_CTX_set1_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey);
/netbsd/crypto/external/bsd/openssl/dist/crypto/ct/
H A Dct_sct_ctx.c204 __owur static int ct_public_key_hash(SCT_CTX *sctx, X509_PUBKEY *pkey, in ct_public_key_hash()
253 int SCT_CTX_set1_issuer_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey) in SCT_CTX_set1_issuer_pubkey()
258 int SCT_CTX_set1_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey) in SCT_CTX_set1_pubkey()
H A Dct_local.h155 __owur int SCT_CTX_set1_issuer_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey);
161 __owur int SCT_CTX_set1_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey);
/netbsd/crypto/external/bsd/openssl/dist/crypto/pem/
H A Dpem_all.c41 IMPLEMENT_PEM_rw(X509_PUBKEY, X509_PUBKEY, PEM_STRING_PUBLIC, X509_PUBKEY) in IMPLEMENT_PEM_rw()
/netbsd/crypto/external/bsd/openssl/dist/include/openssl/
H A Dx509.h.in226 X509_PUBKEY *pubkey;
401 X509_PUBKEY *d2i_X509_PUBKEY_fp(FILE *fp, X509_PUBKEY **xpk);
449 X509_PUBKEY *d2i_X509_PUBKEY_bio(BIO *bp, X509_PUBKEY **xpk);
467 DECLARE_ASN1_DUP_FUNCTION(X509_PUBKEY)
504 DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
507 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
508 EVP_PKEY *X509_PUBKEY_get0(const X509_PUBKEY *key);
509 EVP_PKEY *X509_PUBKEY_get(const X509_PUBKEY *key);
669 X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x);
694 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req);
[all …]
/netbsd/crypto/external/bsd/openssl/dist/test/
H A Dalgorithmid_test.c23 static int test_spki_aid(X509_PUBKEY *pubkey, const char *filename) in test_spki_aid()
105 X509_PUBKEY *pubkey = X509_get_X509_PUBKEY(cert); in test_x509_spki_aid()
190 X509_PUBKEY *pubkey = NULL; in test_spki_file()
H A Dlocaletest.c98 X509_PUBKEY *cert_pubkey = NULL; in setup_tests()
/netbsd/crypto/external/bsd/openssl.old/dist/include/crypto/
H A Dasn1.h20 int (*pub_decode) (EVP_PKEY *pk, X509_PUBKEY *pub);
21 int (*pub_encode) (X509_PUBKEY *pub, const EVP_PKEY *pk);
H A Dx509.h61 X509_PUBKEY *pubkey; /* public key of request */
153 X509_PUBKEY *key;
/netbsd/crypto/external/bsd/openssl.old/dist/include/openssl/
H A Dx509.h261 X509_PUBKEY *pubkey;
507 DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
509 int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
510 EVP_PKEY *X509_PUBKEY_get0(X509_PUBKEY *key);
511 EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key);
666 X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x);
690 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req);
1029 int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *aobj,
1034 X509_ALGOR **pa, X509_PUBKEY *pub);
/netbsd/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Dx_spki.c16 ASN1_SIMPLE(NETSCAPE_SPKAC, pubkey, X509_PUBKEY),
/netbsd/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dx_spki.c16 ASN1_SIMPLE(NETSCAPE_SPKAC, pubkey, X509_PUBKEY),

1234