Home
last modified time | relevance | path

Searched refs:btmp (Results 1 – 7 of 7) sorted by relevance

/dragonfly/crypto/libressl/crypto/conf/
H A Dconf_lib.c110 BIO *btmp; in LHASH_OF() local
117 ltmp = CONF_load_bio(conf, btmp, eline); in LHASH_OF()
118 BIO_free(btmp); in LHASH_OF()
195 BIO *btmp; in CONF_dump_fp() local
202 ret = CONF_dump_bio(conf, btmp); in CONF_dump_fp()
203 BIO_free(btmp); in CONF_dump_fp()
269 BIO *btmp; in NCONF_load_fp() local
277 BIO_free(btmp); in NCONF_load_fp()
355 BIO *btmp; in NCONF_dump_fp() local
361 ret = NCONF_dump_bio(conf, btmp); in NCONF_dump_fp()
[all …]
/dragonfly/crypto/libressl/crypto/pkcs7/
H A Dpk7_doit.c113 BIO *btmp; in PKCS7_bio_add_digest() local
128 *pbio = btmp; in PKCS7_bio_add_digest()
133 btmp = NULL; in PKCS7_bio_add_digest()
138 BIO_free(btmp); in PKCS7_bio_add_digest()
374 out = btmp; in PKCS7_dataInit()
377 btmp = NULL; in PKCS7_dataInit()
501 out = btmp; in PKCS7_dataDecode()
691 BIO *btmp; in PKCS7_dataFinal() local
988 BIO *btmp; in PKCS7_signatureVerify() local
1001 btmp = bio; in PKCS7_signatureVerify()
[all …]
/dragonfly/crypto/libressl/crypto/x509/
H A Dx509_utl.c285 char *btmp; in X509V3_get_value_bool() local
287 if (!(btmp = value->value)) in X509V3_get_value_bool()
289 if (!strcmp(btmp, "TRUE") || !strcmp(btmp, "true") || in X509V3_get_value_bool()
290 !strcmp(btmp, "Y") || !strcmp(btmp, "y") || in X509V3_get_value_bool()
291 !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) { in X509V3_get_value_bool()
294 } else if (!strcmp(btmp, "FALSE") || !strcmp(btmp, "false") || in X509V3_get_value_bool()
295 !strcmp(btmp, "N") || !strcmp(btmp, "n") || in X509V3_get_value_bool()
296 !strcmp(btmp, "NO") || !strcmp(btmp, "no")) { in X509V3_get_value_bool()
/dragonfly/crypto/libressl/crypto/asn1/
H A Da_strex.c579 BIO *btmp; in X509_NAME_print_ex_fp() local
581 btmp = BIO_new_fp(fp, BIO_NOCLOSE); in X509_NAME_print_ex_fp()
582 if (!btmp) in X509_NAME_print_ex_fp()
584 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp()
585 BIO_free(btmp); in X509_NAME_print_ex_fp()
/dragonfly/usr.sbin/watch/
H A Dwatch.c98 char btmp[1024]; in timestamp() local
102 strftime(btmp, 1024, "Time: %d %b %H:%M", localtime(&t)); in timestamp()
103 printf("%s\n", btmp); in timestamp()
/dragonfly/crypto/libressl/apps/openssl/
H A Dapps.c465 BIO *btmp; in app_get_pass() local
484 btmp = BIO_new(BIO_f_buffer()); in app_get_pass()
485 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass()
1330 BIGNUM *btmp; in rand_serial() local
1334 btmp = b; in rand_serial()
1336 btmp = BN_new(); in rand_serial()
1338 if (!btmp) in rand_serial()
1341 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0)) in rand_serial()
1343 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()
1349 if (b != btmp) in rand_serial()
[all …]
/dragonfly/lib/libc/stdtime/
H A Dlocaltime.c189 const struct tm * btmp);
1733 tmcomp(const struct tm * const atmp, const struct tm * const btmp) in tmcomp() argument
1737 if (atmp->tm_year != btmp->tm_year) in tmcomp()
1738 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp()
1739 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp()
1740 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()
1741 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()
1742 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()
1743 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()