Searched refs:BIO_read (Results 1 - 25 of 34) sorted by relevance

12

/openbsd-current/regress/lib/libcrypto/bio/
H A Dbio_mem.c132 if ((ret = BIO_read(bio, data, data_len)) != -1) {
133 fprintf(stderr, "FAIL: BIO_read() = %d, want -1\n", ret);
140 if ((ret = BIO_read(bio, data, data_len)) != -2) {
141 fprintf(stderr, "FAIL: BIO_read() = %d, want -2\n", ret);
184 ret = BIO_read(bio, buf, sizeof(buf));
186 fprintf(stderr, "FAIL: BIO_read() = %d, "
198 ret = BIO_read(bio, buf, sizeof(buf));
200 fprintf(stderr, "FAIL: BIO_read() = %d, "
247 if ((ret = BIO_read(bio, buf, 1)) != 1) {
248 fprintf(stderr, "FAIL: BIO_read()
[all...]
/openbsd-current/lib/libcrypto/bio/
H A Dbf_null.c127 ret = BIO_read(b->next_bio, out, outl);
H A Dbf_buff.c185 i = BIO_read(b->next_bio, out, outl);
203 i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
504 i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
H A Dbf_nbio.c156 ret = BIO_read(b->next_bio, out, outl);
H A Dbio_lib.c325 BIO_read(BIO *b, void *out, int outl) function
380 LCRYPTO_ALIAS(BIO_read); variable
H A Dbss_acpt.c306 ret = BIO_read(b->next_bio, out, outl);
/openbsd-current/usr.bin/openssl/
H A Ds_client.c1197 BIO_read(sbio, sbuf, BUFSIZZ);
1199 mbuf_len = BIO_read(sbio, mbuf, BUFSIZZ);
1201 BIO_printf(bio_err, "BIO_read failed\n");
1205 BIO_read(sbio, sbuf, BUFSIZZ);
1229 BIO_read(sbio, sbuf, BUFSIZZ);
1242 BIO_read(sbio, sbuf, BUFSIZZ);
1250 seen = BIO_read(sbio, mbuf, BUFSIZZ);
1258 seen = BIO_read(sbio, mbuf, BUFSIZZ);
1267 seen = BIO_read(sbio, sbuf, BUFSIZZ);
1275 mbuf_len = BIO_read(sbi
[all...]
H A Denc.c585 } else if (BIO_read(rbio, mbuf, sizeof mbuf) != sizeof mbuf
586 || BIO_read(rbio,
720 inl = BIO_read(rbio, (char *) buff, bsize);
H A Drsautl.c341 rsa_inlen = BIO_read(in, rsa_in, keysize * 2);
H A Ddgst.c533 siglen = BIO_read(sigbio, sigbuf, siglen);
608 i = BIO_read(bp, (char *) buf, BUFSIZE);
H A Dasn1pars.c328 i = BIO_read(in, &(buf->data[num]), BUFSIZ);
/openbsd-current/lib/libcrypto/hidden/openssl/
H A Dbio.h80 LCRYPTO_USED(BIO_read); variable
/openbsd-current/lib/libcrypto/evp/
H A Dbio_md.c139 ret = BIO_read(b->next_bio, out, outl);
H A Dbio_enc.c197 i = BIO_read(bio->next_bio, &ctx->buf[BUF_OFFSET],
/openbsd-current/lib/libcrypto/asn1/
H A Dasn1_item.c501 i = BIO_read(in, &(b->data[len]), want);
553 if (want > INT_MAX /* BIO_read takes an int length */ ||
573 i = BIO_read(in, &(b->data[len]), chunk);
H A Dbio_asn1.c339 return BIO_read(b->next_bio, in , inl);
/openbsd-current/lib/libcrypto/pkcs7/
H A Dpk7_smime.c377 i = BIO_read(p7bio, buf, sizeof(buf));
568 i = BIO_read(tmpmem, buf, sizeof(buf));
/openbsd-current/regress/lib/libssl/quic/
H A Dquictest.c78 if ((ret = BIO_read(qd->rbio, buf, sizeof(buf))) > 0) {
/openbsd-current/regress/lib/libcrypto/base64/
H A Dbase64test.c398 * If we wrote zero characters then a BIO_read will result in a return
401 len = BIO_read(bio_mem, buf, BUF_SIZE);
/openbsd-current/lib/libcrypto/pem/
H A Dpvkfmt.c281 if (BIO_read(in, hdr_buf, 16) != 16) {
296 if (BIO_read(in, buf, length) != (int)length) {
821 if (BIO_read(in, pvk_hdr, 24) != 24) {
836 if (BIO_read(in, buf, buflen) != buflen) {
/openbsd-current/lib/libcrypto/man/
H A DMakefile53 BIO_read.3 \
/openbsd-current/regress/lib/libssl/ssl/
H A Dssltest.c892 r = BIO_read(c_ssl_bio, cbuf, sizeof(cbuf));
962 r = BIO_read(s_ssl_bio, sbuf, sizeof(sbuf));
988 * and the standard BIO_write/BIO_read interface for io2
1060 r = BIO_read(io2, dataptr, (int)num);
1063 fprintf(stderr, "ERROR: BIO_read could not read "
1233 i = BIO_read(c_bio, cbuf, sizeof(cbuf));
1269 i = BIO_read(s_bio, sbuf, sizeof(cbuf));
/openbsd-current/lib/libcrypto/ts/
H A Dts_rsp_verify.c208 while ((i = BIO_read(p7bio, buf, sizeof(buf))) > 0)
729 while ((length = BIO_read(data, buffer, sizeof(buffer))) > 0) {
/openbsd-current/lib/libcrypto/ocsp/
H A Docsp_ht.c274 n = BIO_read(rctx->io, rctx->iobuf, rctx->iobuflen);
/openbsd-current/lib/libssl/
H A Dtls13_legacy.c36 if ((n = BIO_read(ssl->rbio, buf, len)) <= 0) {

Completed in 909 milliseconds

12