Lines Matching refs:bio_buf
595 BIO *bio_buf; in FuzzerTestOneInput() local
628 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
629 …OPENSSL_assert((size_t)BIO_write(bio_buf, RSAPrivateKeyPEM, sizeof(RSAPrivateKeyPEM)) == sizeof(RS… in FuzzerTestOneInput()
630 privkey = PEM_read_bio_RSAPrivateKey(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
633 BIO_free(bio_buf); in FuzzerTestOneInput()
641 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
642 …OPENSSL_assert((size_t)BIO_write(bio_buf, RSACertificatePEM, sizeof(RSACertificatePEM)) == sizeof(… in FuzzerTestOneInput()
643 cert = PEM_read_bio_X509(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
644 BIO_free(bio_buf); in FuzzerTestOneInput()
653 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
654 …OPENSSL_assert((size_t)BIO_write(bio_buf, ECDSAPrivateKeyPEM, sizeof(ECDSAPrivateKeyPEM)) == sizeo… in FuzzerTestOneInput()
655 ecdsakey = PEM_read_bio_ECPrivateKey(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
658 BIO_free(bio_buf); in FuzzerTestOneInput()
665 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
666 …OPENSSL_assert((size_t)BIO_write(bio_buf, ECDSACertPEM, sizeof(ECDSACertPEM)) == sizeof(ECDSACertP… in FuzzerTestOneInput()
667 cert = PEM_read_bio_X509(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
669 BIO_free(bio_buf); in FuzzerTestOneInput()
677 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
678 …OPENSSL_assert((size_t)BIO_write(bio_buf, DSAPrivateKeyPEM, sizeof(DSAPrivateKeyPEM)) == sizeof(DS… in FuzzerTestOneInput()
679 dsakey = PEM_read_bio_DSAPrivateKey(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
682 BIO_free(bio_buf); in FuzzerTestOneInput()
689 bio_buf = BIO_new(BIO_s_mem()); in FuzzerTestOneInput()
690 … OPENSSL_assert((size_t)BIO_write(bio_buf, DSACertPEM, sizeof(DSACertPEM)) == sizeof(DSACertPEM)); in FuzzerTestOneInput()
691 cert = PEM_read_bio_X509(bio_buf, NULL, NULL, NULL); in FuzzerTestOneInput()
693 BIO_free(bio_buf); in FuzzerTestOneInput()