HomeSort by relevance Sort by last modified time
    Searched refs:BIO (Results 151 - 175 of 198) sorted by null

1 2 3 4 5 67 8

  /external/openssl/include/openssl/
ocsp.h 403 OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, char *path, OCSP_REQUEST *req);
404 OCSP_REQ_CTX *OCSP_sendreq_new(BIO *io, char *path, OCSP_REQUEST *req,
554 int OCSP_REQUEST_print(BIO *bp, OCSP_REQUEST* a, unsigned long flags);
555 int OCSP_RESPONSE_print(BIO *bp, OCSP_RESPONSE* o, unsigned long flags);
pkcs12.h 62 #include <openssl/bio.h>
266 int i2d_PKCS12_bio(BIO *bp, PKCS12 *p12);
268 PKCS12 *d2i_PKCS12_bio(BIO *bp, PKCS12 **p12);
  /external/openssl/apps/
dhparam.c 119 #include <openssl/bio.h>
160 BIO *in=NULL,*out=NULL;
425 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
dsaparam.c 73 #include <openssl/bio.h>
119 BIO *in=NULL,*out=NULL;
266 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
cms.c 73 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms);
117 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL;
866 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
1182 BIO *tmp;
1212 static void gnames_stack_print(BIO *out, STACK_OF(GENERAL_NAMES) *gns)
1231 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms)
    [all...]
smime.c 100 BIO *in = NULL, *out = NULL, *indata = NULL;
632 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
773 BIO *tmp;
ca.c 68 #include <openssl/bio.h>
219 static void write_new_certificate(BIO *bp, X509 *x, int output_der, int notext);
232 int old_entry_print(BIO *bp, ASN1_OBJECT *obj, ASN1_STRING *str);
300 BIO *in=NULL,*out=NULL,*Sout=NULL,*Cout=NULL;
625 BIO *oid_bio;
931 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
1014 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
    [all...]
req.c 73 #include <openssl/bio.h>
178 BIO *in=NULL,*out=NULL;
602 BIO *oid_bio;
814 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
1065 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
    [all...]
verify.c 63 #include <openssl/bio.h>
285 BIO *in=NULL;
  /external/openssl/crypto/pkcs12/
pkcs12.h 62 #include <openssl/bio.h>
266 int i2d_PKCS12_bio(BIO *bp, PKCS12 *p12);
268 PKCS12 *d2i_PKCS12_bio(BIO *bp, PKCS12 **p12);
p12_key.c 67 #include <openssl/bio.h>
68 extern BIO *bio_err;
  /external/openssl/crypto/txt_db/
txt_db.c 71 TXT_DB *TXT_DB_read(BIO *in, int num)
253 long TXT_DB_write(BIO *out, TXT_DB *db)
  /external/openssl/crypto/threads/
mttest.c 132 BIO *bio_err=NULL;
133 BIO *bio_stdout=NULL;
423 BIO *c_to_s=NULL;
424 BIO *s_to_c=NULL;
425 BIO *c_bio=NULL;
426 BIO *s_bio=NULL;
669 /* We have to set the BIO's to NULL otherwise they will be
673 * BIO structure and SSL_set_bio() and SSL_free() automatically
  /dalvik/libcore/x-net/src/main/native/
org_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp 393 * stored in a freshly-allocated BIO memory buffer.
395 static BIO *stringToMemBuf(JNIEnv* env, jstring string) {
400 BIO* result = BIO_new(BIO_s_mem());
963 BIO *bio = SSL_get_rbio(ssl); local
975 unsigned int bytesMoved = BIO_number_read(bio) + BIO_number_written(bio);
989 if (BIO_number_read(bio) + BIO_number_written(bio) != bytesMoved && data->waitingThreads > 0) {
1081 BIO *bio = SSL_get_wbio(ssl); local
1587 BIO *bio; local
2304 BIO *bio = BIO_new(BIO_s_mem()); local
    [all...]
  /external/openssl/ssl/
ssltest.c 135 #include <openssl/bio.h>
210 static BIO *bio_err=NULL;
211 static BIO *bio_stdout=NULL;
269 fprintf(stderr," -bio_pair - Use BIO pairs\n");
693 fprintf(stderr, "Using BIO pair (-bio_pair)\n");
994 BIO *s_ssl_bio = NULL, *c_ssl_bio = NULL;
995 BIO *server = NULL, *server_io = NULL, *client = NULL, *client_io = NULL;
1023 /* c_ssl_bio: SSL filter BIO
1035 * s_ssl_bio: SSL filter BIO
1037 * The client and the server each employ a "BIO pair"
    [all...]
ssl_lib.c 480 /* If the buffering BIO is in place, pop it off */
538 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
540 /* If the output buffering BIO is still in place, remove it
558 BIO *SSL_get_rbio(const SSL *s)
561 BIO *SSL_get_wbio(const SSL *s)
572 BIO *b,*r;
584 BIO *b,*r;
597 BIO *bio=NULL local
616 BIO *bio=NULL; local
638 BIO *bio=NULL; local
2099 BIO *bio; local
    [all...]
ssl_cert.c 126 #include <openssl/bio.h>
653 BIO *in;
724 BIO *in;
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
tls_openssl.c 54 static BIO *BIO_from_keystore(const char *key)
56 BIO *bio = NULL; local
59 if (length != -1 && (bio = BIO_new(BIO_s_mem())) != NULL) {
60 BIO_write(bio, value, length);
62 return bio;
70 BIO *ssl_in, *ssl_out;
895 "Failed to create a new BIO for ssl_in");
904 "Failed to create a new BIO for ssl_out");
1145 BIO *bio = BIO_from_keystore(&ca_cert[11]) local
1342 BIO *bio = BIO_from_keystore(&client_cert[11]); local
1753 BIO *bio = BIO_from_keystore(&private_key[11]); local
    [all...]
  /external/openssl/crypto/engine/
eng_openssl.c 374 BIO *in;
  /external/wpa_supplicant/
tls_openssl.c 44 static BIO *BIO_from_keystore(const char *key)
46 BIO *bio = NULL; local
49 if (length != -1 && (bio = BIO_new(BIO_s_mem())) != NULL) {
50 BIO_write(bio, value, length);
52 return bio;
60 BIO *ssl_in, *ssl_out;
914 "Failed to create a new BIO for ssl_in");
923 "Failed to create a new BIO for ssl_out");
1163 BIO *bio = BIO_from_keystore(&ca_cert[11]) local
1345 BIO *bio = BIO_from_keystore(&client_cert[11]); local
1653 BIO *bio = BIO_from_keystore(&private_key[11]); local
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 440 static BIO *BIO_from_keystore(char *key)
442 BIO *bio = NULL; local
445 if (length != -1 && (bio = BIO_new(BIO_s_mem())) != NULL) {
446 BIO_write(bio, value, length);
448 return bio;
497 BIO *bio = BIO_from_keystore(CAfile); local
502 if (!bio) {
505 stack = PEM_X509_INFO_read_bio(bio, NULL, NULL, NULL)
797 BIO *bio = NULL; local
859 BIO *bio; local
896 BIO *bio = BIO_from_keystore(path); local
1002 BIO *bio = BIO_from_keystore(path); local
2568 BIO *bio=NULL, *b64=NULL; local
2605 BIO *bio=NULL, *b64=NULL; local
    [all...]
  /external/openssl/crypto/bio/
b_print.c 1 /* crypto/bio/b_print.c */
80 #include <openssl/bio.h>
768 int BIO_printf (BIO *bio, const char *format, ...)
775 ret = BIO_vprintf(bio, format, args);
781 int BIO_vprintf (BIO *bio, const char *format, va_list args)
799 ret=BIO_write(bio, dynbuf, (int)retlen);
804 ret=BIO_write(bio, hugebuf, (int)retlen);
  /external/openssl/crypto/
install.com 48 BUFFER,BIO,STACK,LHASH,RAND,ERR,-
82 $ EXHEADER_BIO := bio.h
  /external/openssl/crypto/x509v3/
v3_asid.c 107 static int i2r_ASIdentifierChoice(BIO *out,
157 BIO *out,
  /external/blktrace/doc/
blktrace.tex 534 \item[B -- bounced] The data pages attached to this \emph{bio} are
    [all...]

Completed in 279 milliseconds

1 2 3 4 5 67 8