Searched refs:BIO (Results 1 - 25 of 45) sorted by relevance

12

/asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/
H A Dbio.h89 #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
90 #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
91 #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
94 #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
119 #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
121 /* callback is int cb(BIO *bio,state,ret); */
146 /* Mostly used in the SSL BIO */
185 * BIO *BIO_get_retry_BIO(BIO *bio, int *reason); will walk the BIO
217 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
[all...]
H A Dtxt_db.h92 TXT_DB *TXT_DB_read(BIO *in, int num);
93 long TXT_DB_write(BIO *out, TXT_DB *db);
H A Dpkcs7.h286 PKCS7 *d2i_PKCS7_bio(BIO *bp,PKCS7 **p7);
287 int i2d_PKCS7_bio(BIO *bp,PKCS7 *p7);
315 BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si);
316 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
319 BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio);
320 int PKCS7_dataFinal(PKCS7 *p7, BIO *bio);
321 BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert);
348 BIO *dat
[all...]
H A Dx509.h718 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki);
720 int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig);
773 X509 *d2i_X509_bio(BIO *bp,X509 **x509);
774 int i2d_X509_bio(BIO *bp,X509 *x509);
775 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl);
776 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
777 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
778 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
780 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa);
781 int i2d_RSAPrivateKey_bio(BIO *b
[all...]
H A Dlhash.h190 void lh_stats_bio(const LHASH *lh, BIO *out);
191 void lh_node_stats_bio(const LHASH *lh, BIO *out);
192 void lh_node_usage_stats_bio(const LHASH *lh, BIO *out);
H A Dconf.h95 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
96 int (*dump)(const CONF *conf, BIO *bp);
123 LHASH *CONF_load_bio(LHASH *conf, BIO *bp,long *eline);
129 int CONF_dump_bio(LHASH *conf, BIO *out);
157 int NCONF_load_bio(CONF *conf, BIO *bp,long *eline);
163 int NCONF_dump_bio(const CONF *conf, BIO *out);
H A Dasn1.h736 int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
806 int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
807 int a2i_ASN1_INTEGER(BIO *bp,ASN1_INTEGER *bs,char *buf,int size);
808 int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
809 int a2i_ASN1_ENUMERATED(BIO *bp,ASN1_ENUMERATED *bs,char *buf,int size);
810 int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
811 int a2i_ASN1_STRING(BIO *bp,ASN1_STRING *bs,char *buf,int size);
812 int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
869 char *ASN1_d2i_bio(char *(*xnew)(),char *(*d2i)(),BIO *bp,unsigned char **x);
870 void *ASN1_item_d2i_bio(const ASN1_ITEM *it, BIO *i
[all...]
H A Dpem.h239 type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
246 int PEM_write_bio_##name(BIO *bp, type *x) \
253 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
304 type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);
307 int PEM_write_bio_##name(BIO *bp, type *x);
310 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
491 int PEM_read_bio(BIO *bp, char **name, char **header,
493 int PEM_write_bio(BIO *bp,const char *name,char *hdr,unsigned char *data,
495 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm, const char *name, BIO *bp,
497 char * PEM_ASN1_read_bio(char *(*d2i)(),const char *name,BIO *b
[all...]
H A Dssl.h787 /* There are 2 BIO's even though they are normally both the
792 BIO *rbio; /* used by SSL_read */
793 BIO *wbio; /* used by SSL_write */
794 BIO *bbio; /* used during session-id reuse to concatenate
1162 BIO *BIO_new_ssl(SSL_CTX *ctx,int client);
1163 BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
1164 BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
1165 int BIO_ssl_copy_session_id(BIO *to,BIO *from);
1166 void BIO_ssl_shutdown(BIO *ssl_bi
[all...]
H A Dx509v3.h83 typedef int (*X509V3_EXT_I2R)(struct v3_ext_method *method, void *ext, BIO *out, int indent);
428 int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen);
444 int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION* a);
523 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
525 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
528 int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent);
H A Ddsa.h199 int DSAparams_print(BIO *bp, const DSA *x);
200 int DSA_print(BIO *bp, const DSA *x, int off);
H A Dpkcs12.h252 int i2d_PKCS12_bio(BIO *bp, PKCS12 *p12);
254 PKCS12 *d2i_PKCS12_bio(BIO *bp, PKCS12 **p12);
/asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/
H A Dbio.h90 #define BIO_TYPE_PROXY_CLIENT (14|0x0200) /* client proxy BIO */
91 #define BIO_TYPE_PROXY_SERVER (15|0x0200) /* server proxy BIO */
92 #define BIO_TYPE_NBIO_TEST (16|0x0200) /* server proxy BIO */
95 #define BIO_TYPE_BIO (19|0x0400) /* (half a) BIO pair */
121 #define BIO_CTRL_DUP 12 /* man - extra stuff for 'duped' BIO */
123 /* callback is int cb(BIO *bio,state,ret); */
129 /* dgram BIO stuff */
130 #define BIO_CTRL_DGRAM_CONNECT 31 /* BIO dgram special */
185 /* Mostly used in the SSL BIO */
224 * BIO *BIO_get_retry_BI
256 typedef struct bio_st BIO; typedef in typeref:struct:bio_st
[all...]
H A Dtxt_db.h93 TXT_DB *TXT_DB_read(BIO *in, int num);
94 long TXT_DB_write(BIO *out, TXT_DB *db);
H A Dpkcs7.h292 PKCS7 *d2i_PKCS7_bio(BIO *bp,PKCS7 **p7);
293 int i2d_PKCS7_bio(BIO *bp,PKCS7 *p7);
323 BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si);
324 int PKCS7_signatureVerify(BIO *bio, PKCS7 *p7, PKCS7_SIGNER_INFO *si,
327 BIO *PKCS7_dataInit(PKCS7 *p7, BIO *bio);
328 int PKCS7_dataFinal(PKCS7 *p7, BIO *bio);
329 BIO *PKCS7_dataDecode(PKCS7 *p7, EVP_PKEY *pkey, BIO *in_bio, X509 *pcert);
357 BIO *dat
[all...]
H A Dpem.h257 type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
259 return(((type *(*)(D2I_OF(type),const char *,BIO *,type **,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_read_bio))(d2i_##asn1, str,bp,x,cb,u)); \
263 int PEM_write_bio_##name(BIO *bp, type *x) \
265 return(((int (*)(I2D_OF(type),const char *,BIO *,type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL)); \
269 int PEM_write_bio_##name(BIO *bp, const type *x) \
271 return(((int (*)(I2D_OF_const(type),const char *,BIO *,const type *, const EVP_CIPHER *,unsigned char *,int, pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL)); \
275 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
278 return(((int (*)(I2D_OF(type),const char *,BIO *,type *,const EVP_CIPHER *,unsigned char *,int,pem_password_cb *,void *))openssl_fcast(PEM_ASN1_write_bio))(i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u)); \
282 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
285 return(((int (*)(I2D_OF_const(type),const char *,BIO *,typ
[all...]
H A Dlhash.h191 void lh_stats_bio(const LHASH *lh, BIO *out);
192 void lh_node_stats_bio(const LHASH *lh, BIO *out);
193 void lh_node_usage_stats_bio(const LHASH *lh, BIO *out);
H A Dconf.h96 int (*load_bio)(CONF *conf, BIO *bp, long *eline);
97 int (*dump)(const CONF *conf, BIO *bp);
124 LHASH *CONF_load_bio(LHASH *conf, BIO *bp,long *eline);
130 int CONF_dump_bio(LHASH *conf, BIO *out);
155 int NCONF_load_bio(CONF *conf, BIO *bp,long *eline);
161 int NCONF_dump_bio(const CONF *conf, BIO *out);
H A Dx509.h756 int NETSCAPE_SPKI_print(BIO *out, NETSCAPE_SPKI *spki);
758 int X509_signature_print(BIO *bp,X509_ALGOR *alg, ASN1_STRING *sig);
817 X509 *d2i_X509_bio(BIO *bp,X509 **x509);
818 int i2d_X509_bio(BIO *bp,X509 *x509);
819 X509_CRL *d2i_X509_CRL_bio(BIO *bp,X509_CRL **crl);
820 int i2d_X509_CRL_bio(BIO *bp,X509_CRL *crl);
821 X509_REQ *d2i_X509_REQ_bio(BIO *bp,X509_REQ **req);
822 int i2d_X509_REQ_bio(BIO *bp,X509_REQ *req);
824 RSA *d2i_RSAPrivateKey_bio(BIO *bp,RSA **rsa);
825 int i2d_RSAPrivateKey_bio(BIO *b
[all...]
H A Dasn1.h781 int ASN1_BIT_STRING_name_print(BIO *out, ASN1_BIT_STRING *bs,
850 int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a);
851 int a2i_ASN1_INTEGER(BIO *bp,ASN1_INTEGER *bs,char *buf,int size);
852 int i2a_ASN1_ENUMERATED(BIO *bp, ASN1_ENUMERATED *a);
853 int a2i_ASN1_ENUMERATED(BIO *bp,ASN1_ENUMERATED *bs,char *buf,int size);
854 int i2a_ASN1_OBJECT(BIO *bp,ASN1_OBJECT *a);
855 int a2i_ASN1_STRING(BIO *bp,ASN1_STRING *bs,char *buf,int size);
856 int i2a_ASN1_STRING(BIO *bp, ASN1_STRING *a, int type);
926 void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
928 ((type *(*)(type *(*)(void),D2I_OF(type),BIO *,typ
[all...]
H A Dx509v3.h83 typedef int (*X509V3_EXT_I2R)(struct v3_ext_method *method, void *ext, BIO *out, int indent);
481 int GENERAL_NAME_print(BIO *out, GENERAL_NAME *gen);
497 int i2a_ACCESS_DESCRIPTION(BIO *bp, ACCESS_DESCRIPTION* a);
592 void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
594 int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent);
597 int X509V3_extensions_print(BIO *out, char *title, STACK_OF(X509_EXTENSION) *exts, unsigned long flag, int indent);
626 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent);
H A Ddsa.h228 int DSAparams_print(BIO *bp, const DSA *x);
229 int DSA_print(BIO *bp, const DSA *x, int off);
H A Dssl.h814 /* There are 2 BIO's even though they are normally both the
819 BIO *rbio; /* used by SSL_read */
820 BIO *wbio; /* used by SSL_write */
821 BIO *bbio; /* used during session-id reuse to concatenate
1184 BIO *BIO_new_ssl(SSL_CTX *ctx,int client);
1185 BIO *BIO_new_ssl_connect(SSL_CTX *ctx);
1186 BIO *BIO_new_buffer_ssl_connect(SSL_CTX *ctx);
1187 int BIO_ssl_copy_session_id(BIO *to,BIO *from);
1188 void BIO_ssl_shutdown(BIO *ssl_bi
[all...]
H A Dec.h286 int ECPKParameters_print(BIO *bp, const EC_GROUP *x, int off);
343 int ECParameters_print(BIO *bp, const EC_KEY *x);
344 int EC_KEY_print(BIO *bp, const EC_KEY *x, int off);
/asus-wl-520gu-7.0.1.45/src/router/vsftpd/
H A Dssl.c36 BIO* p_bio, int oper, const char* p_arg, int argi, long argl, long retval);
327 BIO* p_bio = SSL_get_rbio(p_ssl);
335 BIO* p_bio, int oper, const char* p_arg, int argi, long argl, long ret)

Completed in 261 milliseconds

12