/external/chromium_org/third_party/openssl/openssl/crypto/conf/ |
conf_sap.c | 94 BIO *bio_err; local 96 if ((bio_err=BIO_new_fp(stderr, BIO_NOCLOSE)) != NULL) 98 BIO_printf(bio_err,"Auto configuration failed\n"); 99 ERR_print_errors(bio_err); 100 BIO_free(bio_err);
|
/external/openssl/crypto/conf/ |
conf_sap.c | 94 BIO *bio_err; local 96 if ((bio_err=BIO_new_fp(stderr, BIO_NOCLOSE)) != NULL) 98 BIO_printf(bio_err,"Auto configuration failed\n"); 99 ERR_print_errors(bio_err); 100 BIO_free(bio_err);
|
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsagen.c | 100 BIO *bio_err=NULL; local 102 if (bio_err == NULL) 103 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err); 109 DSA_print(bio_err,dsa,0);
|
dsatest.c | 135 static BIO *bio_err=NULL; variable 147 if (bio_err == NULL) 148 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 157 BIO_printf(bio_err,"test generation of DSA parameters\n"); 159 BN_GENCB_set(&cb, dsa_cb, bio_err); 164 BIO_printf(bio_err,"seed\n"); 167 BIO_printf(bio_err,"%02X%02X%02X%02X ", 170 BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h); 172 DSA_print(bio_err,dsa,0); 175 BIO_printf(bio_err,"counter should be 105\n") [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/jpake/ |
jpaketest.c | 121 BIO *bio_err; local 123 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); 187 CRYPTO_mem_leaks(bio_err);
|
/external/openssl/crypto/dsa/ |
dsagen.c | 100 BIO *bio_err=NULL; local 102 if (bio_err == NULL) 103 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 106 dsa=DSA_generate_parameters(1024,seed,20,&counter,&h,cb,bio_err); 109 DSA_print(bio_err,dsa,0);
|
dsatest.c | 135 static BIO *bio_err=NULL; variable 147 if (bio_err == NULL) 148 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 157 BIO_printf(bio_err,"test generation of DSA parameters\n"); 159 BN_GENCB_set(&cb, dsa_cb, bio_err); 164 BIO_printf(bio_err,"seed\n"); 167 BIO_printf(bio_err,"%02X%02X%02X%02X ", 170 BIO_printf(bio_err,"\ncounter=%d h=%ld\n",counter,h); 172 DSA_print(bio_err,dsa,0); 175 BIO_printf(bio_err,"counter should be 105\n") [all...] |
/external/openssl/crypto/jpake/ |
jpaketest.c | 121 BIO *bio_err; local 123 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); 187 CRYPTO_mem_leaks(bio_err);
|
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/ |
dec.c | 69 BIO *bio_err=NULL; variable 90 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 211 BIO_printf(bio_err,"depth=%d %s\n",depth,buf); 214 BIO_printf(bio_err,"verify error:num=%d:%s\n",err, 231 BIO_printf(bio_err,"issuer= %s\n",buf); 235 BIO_printf(bio_err,"notBefore="); 236 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert)); 237 BIO_printf(bio_err,"\n"); 241 BIO_printf(bio_err,"notAfter="); 242 ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert)) [all...] |
verify.c | 69 BIO *bio_err=NULL; variable 86 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 226 BIO_printf(bio_err,"depth=%d %s\n",depth,buf); 229 BIO_printf(bio_err,"verify error:num=%d:%s\n",err, 246 BIO_printf(bio_err,"issuer= %s\n",buf); 250 BIO_printf(bio_err,"notBefore="); 251 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert)); 252 BIO_printf(bio_err,"\n"); 256 BIO_printf(bio_err,"notAfter="); 257 ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert)) [all...] |
/external/openssl/crypto/pkcs7/ |
dec.c | 69 BIO *bio_err=NULL; variable 90 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 211 BIO_printf(bio_err,"depth=%d %s\n",depth,buf); 214 BIO_printf(bio_err,"verify error:num=%d:%s\n",err, 231 BIO_printf(bio_err,"issuer= %s\n",buf); 235 BIO_printf(bio_err,"notBefore="); 236 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert)); 237 BIO_printf(bio_err,"\n"); 241 BIO_printf(bio_err,"notAfter="); 242 ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert)) [all...] |
verify.c | 69 BIO *bio_err=NULL; variable 86 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 226 BIO_printf(bio_err,"depth=%d %s\n",depth,buf); 229 BIO_printf(bio_err,"verify error:num=%d:%s\n",err, 246 BIO_printf(bio_err,"issuer= %s\n",buf); 250 BIO_printf(bio_err,"notBefore="); 251 ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert)); 252 BIO_printf(bio_err,"\n"); 256 BIO_printf(bio_err,"notAfter="); 257 ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert)) [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
apps.h | 146 BIO *bio_err=NULL; variable 149 extern BIO *bio_err; 157 extern BIO *bio_err;
|
openssl.c | 151 BIO *bio_err=NULL; variable 212 /* we cannot use bio_err here */ 290 if (bio_err == NULL) 291 if ((bio_err=BIO_new(BIO_s_file())) != NULL) 292 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT); 348 BIO_printf(bio_err, 357 ERR_print_errors(bio_err); 423 BIO_printf(bio_err,"error in %s\n",argv[0]); 424 (void)BIO_flush(bio_err); 426 BIO_printf(bio_err,"bad exit\n") [all...] |
/external/openssl/apps/ |
apps.h | 146 BIO *bio_err=NULL; variable 149 extern BIO *bio_err; 157 extern BIO *bio_err;
|
openssl.c | 151 BIO *bio_err=NULL; variable 212 /* we cannot use bio_err here */ 290 if (bio_err == NULL) 291 if ((bio_err=BIO_new(BIO_s_file())) != NULL) 292 BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT); 348 BIO_printf(bio_err, 357 ERR_print_errors(bio_err); 423 BIO_printf(bio_err,"error in %s\n",argv[0]); 424 (void)BIO_flush(bio_err); 426 BIO_printf(bio_err,"bad exit\n") [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/threads/ |
mttest.c | 134 BIO *bio_err=NULL; variable 201 if (bio_err == NULL) 202 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 282 ERR_print_errors(bio_err); 293 ERR_print_errors(bio_err); 297 ERR_print_errors(bio_err); 315 ERR_print_errors(bio_err);
|
/external/openssl/crypto/threads/ |
mttest.c | 134 BIO *bio_err=NULL; variable 201 if (bio_err == NULL) 202 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); 282 ERR_print_errors(bio_err); 293 ERR_print_errors(bio_err); 297 ERR_print_errors(bio_err); 315 ERR_print_errors(bio_err);
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
ssltest.c | 295 static BIO *bio_err=NULL; variable 476 /* we cannot use bio_err here */ 559 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE|BIO_FP_TEXT); 641 BIO_printf(bio_err,"Not a hex number '%s'\n",*argv); 900 ERR_print_errors(bio_err); 946 BIO_printf(bio_err, "unknown curve name (%s)\n", named_curve); 960 BIO_printf(bio_err, "unable to create curve\n"); 985 ERR_print_errors(bio_err); 990 ERR_print_errors(bio_err); 1009 ERR_print_errors(bio_err); [all...] |
/external/openssl/ssl/ |
ssltest.c | 295 static BIO *bio_err=NULL; variable 476 /* we cannot use bio_err here */ 559 bio_err=BIO_new_fp(stderr,BIO_NOCLOSE|BIO_FP_TEXT); 641 BIO_printf(bio_err,"Not a hex number '%s'\n",*argv); 900 ERR_print_errors(bio_err); 946 BIO_printf(bio_err, "unknown curve name (%s)\n", named_curve); 960 BIO_printf(bio_err, "unable to create curve\n"); 985 ERR_print_errors(bio_err); 990 ERR_print_errors(bio_err); 1009 ERR_print_errors(bio_err); [all...] |