/optee_test-3.20.0/host/openssl/include/openssl/ |
A D | bio.h | 238 typedef struct bio_st BIO; typedef 320 int (*create) (BIO *); 344 DECLARE_STACK_OF(BIO) 661 int BIO_free(BIO *a); 662 void BIO_vfree(BIO *a); 674 BIO *BIO_push(BIO *b, BIO *append); 675 BIO *BIO_pop(BIO *b); 677 BIO *BIO_find_type(BIO *b, int bio_type); 678 BIO *BIO_next(BIO *b); 679 BIO *BIO_get_retry_BIO(BIO *bio, int *reason); [all …]
|
A D | cms.h | 122 BIO *CMS_dataInit(CMS_ContentInfo *cms, BIO *icont); 136 BIO *BIO_new_CMS(BIO *out, CMS_ContentInfo *cms); 137 int i2d_CMS_bio_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, int flags); 138 int PEM_write_bio_CMS_stream(BIO *out, CMS_ContentInfo *cms, BIO *in, 140 CMS_ContentInfo *SMIME_read_CMS(BIO *bio, BIO **bcont); 141 int SMIME_write_CMS(BIO *bio, CMS_ContentInfo *cms, BIO *data, int flags); 143 int CMS_final(CMS_ContentInfo *cms, BIO *data, BIO *dcont, 157 int CMS_digest_verify(CMS_ContentInfo *cms, BIO *dcont, BIO *out, 164 BIO *dcont, BIO *out, unsigned int flags); 186 BIO *dcont, BIO *out, unsigned int flags); [all …]
|
A D | pkcs7.h | 269 int i2d_PKCS7_bio(BIO *bp, PKCS7 *p7); 270 int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 271 int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags); 306 BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio); 307 int PKCS7_dataFinal(PKCS7 *p7, BIO *bio); 308 BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert); 339 BIO *data, int flags); 347 BIO *indata, BIO *out, int flags); 365 int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags); 366 PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont); [all …]
|
A D | pem.h | 264 int PEM_write_bio_##name(BIO *bp, type *x) \ 270 int PEM_write_bio_##name(BIO *bp, const type *x) \ 350 int PEM_write_bio_##name(BIO *bp, type *x); 353 int PEM_write_bio_##name(BIO *bp, const type *x); 400 int PEM_read_bio(BIO *bp, char **name, char **header, 515 int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x); 519 EVP_PKEY *b2i_PrivateKey_bio(BIO *in); 520 EVP_PKEY *b2i_PublicKey_bio(BIO *in); 521 int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk); 522 int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk); [all …]
|
A D | asn1.h | 913 int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a); 915 int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a); 917 int i2a_ASN1_OBJECT(BIO *bp, ASN1_OBJECT *a); 1037 int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a); 1149 BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it); 1151 int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, 1153 int PEM_write_bio_ASN1_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, 1155 int SMIME_write_ASN1(BIO *bio, ASN1_VALUE *val, BIO *data, int flags, 1158 ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it); 1159 int SMIME_crlf_copy(BIO *in, BIO *out, int flags); [all …]
|
A D | ts.h | 286 TS_REQ *d2i_TS_REQ_bio(BIO *fp, TS_REQ **a); 287 int i2d_TS_REQ_bio(BIO *fp, TS_REQ *a); 300 int i2d_TS_MSG_IMPRINT_bio(BIO *fp, TS_MSG_IMPRINT *a); 311 TS_RESP *d2i_TS_RESP_bio(BIO *fp, TS_RESP **a); 312 int i2d_TS_RESP_bio(BIO *fp, TS_RESP *a); 331 int i2d_TS_TST_INFO_bio(BIO *fp, TS_TST_INFO *a); 398 int TS_REQ_print_bio(BIO *bio, TS_REQ *a); 676 BIO *data; 717 int TS_RESP_print_bio(BIO *bio, TS_RESP *a); 719 int TS_TST_INFO_print_bio(BIO *bio, TS_TST_INFO *a); [all …]
|
A D | x509.h | 709 X509 *d2i_X509_bio(BIO *bp, X509 **x509); 710 int i2d_X509_bio(BIO *bp, X509 *x509); 719 int i2d_RSAPublicKey_bio(BIO *bp, RSA *rsa); 720 RSA *d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa); 721 int i2d_RSA_PUBKEY_bio(BIO *bp, RSA *rsa); 725 int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa); 736 int i2d_PKCS8_bio(BIO *bp, X509_SIG *p8); 1001 int X509_print(BIO *bp, X509 *x); 1002 int X509_ocspid_print(BIO *bp, X509 *x); 1004 int X509_CRL_print(BIO *bp, X509_CRL *x); [all …]
|
A D | conf.h | 93 int (*load_bio) (CONF *conf, BIO *bp, long *eline); 94 int (*dump) (const CONF *conf, BIO *bp); 127 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp, 137 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out); 167 int NCONF_load_bio(CONF *conf, BIO *bp, long *eline); 174 int NCONF_dump_bio(const CONF *conf, BIO *out);
|
A D | txt_db.h | 95 TXT_DB *TXT_DB_read(BIO *in, int num); 96 long TXT_DB_write(BIO *out, TXT_DB *db);
|
A D | lhash.h | 192 void lh_stats_bio(const _LHASH *lh, BIO *out); 193 void lh_node_stats_bio(const _LHASH *lh, BIO *out); 194 void lh_node_usage_stats_bio(const _LHASH *lh, BIO *out);
|
A D | ocsp.h | 397 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req); 398 OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, const char *path, OCSP_REQUEST *req, 402 OCSP_REQ_CTX *OCSP_REQ_CTX_new(BIO *io, int maxline); 409 BIO *OCSP_REQ_CTX_get0_mem_bio(OCSP_REQ_CTX *rctx); 566 int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST *a, unsigned long flags); 567 int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE *o, unsigned long flags);
|
A D | x509v3.h | 98 BIO *out, int indent); 539 int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen); 565 int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION *a); 687 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, 689 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, 693 int X509V3_extensions_print(BIO *out, char *title, 755 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
|
A D | asn1t.h | 667 typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval, 676 typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, 735 BIO *out; 743 BIO *out; 745 BIO *ndef_bio; 900 int fname##_print_ctx(BIO *out, stname *x, int indent, \
|
A D | dsa.h | 244 int DSAparams_print(BIO *bp, const DSA *x); 245 int DSA_print(BIO *bp, const DSA *x, int off);
|
A D | ssl.h | 1438 BIO *rbio; 1440 BIO *wbio; 1442 BIO *bbio; 2122 BIO *BIO_new_ssl(SSL_CTX *ctx, int client); 2123 BIO *BIO_new_ssl_connect(SSL_CTX *ctx); 2124 BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx); 2125 int BIO_ssl_copy_session_id(BIO *to, BIO *from); 2126 void BIO_ssl_shutdown(BIO *ssl_bio); 2161 void SSL_set_bio(SSL *s, BIO *rbio, BIO *wbio); 2162 BIO *SSL_get_rbio(const SSL *s); [all …]
|
A D | pkcs12.h | 269 int i2d_PKCS12_bio(BIO *bp, PKCS12 *p12); 271 PKCS12 *d2i_PKCS12_bio(BIO *bp, PKCS12 **p12);
|
A D | evp.h | 564 void BIO_set_md(BIO *, const EVP_MD *md); 704 void BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k, 1000 int EVP_PKEY_print_public(BIO *out, const EVP_PKEY *pkey, 1002 int EVP_PKEY_print_private(BIO *out, const EVP_PKEY *pkey, 1004 int EVP_PKEY_print_params(BIO *out, const EVP_PKEY *pkey, 1090 int (*pub_print) (BIO *out, 1101 int (*priv_print) (BIO *out, 1116 int (*param_print) (BIO *out,
|
A D | ec.h | 731 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off); 958 int ECParameters_print(BIO *bp, const EC_KEY *key); 966 int EC_KEY_print(BIO *bp, const EC_KEY *key, int off);
|
A D | dh.h | 250 int DHparams_print(BIO *bp, const DH *x);
|
A D | ssl3.h | 516 BIO *handshake_buffer;
|
A D | safestack.h | 412 # define sk_BIO_new(cmp) SKM_sk_new(BIO, (cmp)) 413 # define sk_BIO_new_null() SKM_sk_new_null(BIO) 414 # define sk_BIO_free(st) SKM_sk_free(BIO, (st)) 415 # define sk_BIO_num(st) SKM_sk_num(BIO, (st)) 416 # define sk_BIO_value(st, i) SKM_sk_value(BIO, (st), (i)) 418 # define sk_BIO_zero(st) SKM_sk_zero(BIO, (st)) 427 # define sk_BIO_dup(st) SKM_sk_dup(BIO, st) 430 # define sk_BIO_shift(st) SKM_sk_shift(BIO, (st)) 431 # define sk_BIO_pop(st) SKM_sk_pop(BIO, (st)) 432 # define sk_BIO_sort(st) SKM_sk_sort(BIO, (st)) [all …]
|
A D | err.h | 346 void ERR_print_errors(BIO *bp);
|
A D | rsa.h | 387 int RSA_print(BIO *bp, const RSA *r, int offset);
|
A D | objects.h | 1108 int OBJ_create_objects(BIO *in);
|
/optee_test-3.20.0/host/xtest/ |
A D | regression_8100.c | 147 BIO *buf = BIO_new(BIO_s_mem()); in get_cert()
|