Home
last modified time | relevance | path

Searched refs:bio_buf (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/openssl/openssl/fuzz/
Dserver.c516 BIO *bio_buf; in FuzzerTestOneInput() local
571 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
572 …OPENSSL_assert((size_t)BIO_write(bio_buf, ECDSAPrivateKeyPEM, sizeof(ECDSAPrivateKeyPEM)) == sizeo… in FuzzerTestOneInput()
573 ecdsakey = PEM_read_bio_ECPrivateKey(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
576 BIO_free(bio_buf); in FuzzerTestOneInput()
583 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
584 …OPENSSL_assert((size_t)BIO_write(bio_buf, ECDSACertPEM, sizeof(ECDSACertPEM)) == sizeof(ECDSACertP… in FuzzerTestOneInput()
585 cert = PEM_read_bio_X509(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
587 BIO_free(bio_buf); in FuzzerTestOneInput()
595 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
[all …]
/third_party/openssl/fuzz/
Dserver.c516 BIO *bio_buf; in FuzzerTestOneInput() local
571 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
572 …OPENSSL_assert((size_t)BIO_write(bio_buf, ECDSAPrivateKeyPEM, sizeof(ECDSAPrivateKeyPEM)) == sizeo… in FuzzerTestOneInput()
573 ecdsakey = PEM_read_bio_ECPrivateKey(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
576 BIO_free(bio_buf); in FuzzerTestOneInput()
583 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
584 …OPENSSL_assert((size_t)BIO_write(bio_buf, ECDSACertPEM, sizeof(ECDSACertPEM)) == sizeof(ECDSACertP… in FuzzerTestOneInput()
585 cert = PEM_read_bio_X509(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
587 BIO_free(bio_buf); in FuzzerTestOneInput()
595 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
[all …]
/third_party/openssl/test/
Dbioprinttest.c133 char bio_buf[80]; in test_zu() local
136 BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value); in test_zu()
137 if (!TEST_str_eq(bio_buf, data->expected)) in test_zu()
162 char bio_buf[80]; in test_j() local
164 BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value); in test_j()
165 if (!TEST_str_eq(bio_buf, data->expected)) in test_j()