Home
last modified time | relevance | path

Searched refs:BIO_gets (Results 1 – 25 of 44) sorted by relevance

12

/third_party/openssl/doc/man3/
DBIO_read.pod5 BIO_read_ex, BIO_write_ex, BIO_read, BIO_write, BIO_gets, BIO_puts
16 int BIO_gets(BIO *b, char *buf, int size);
32 BIO_gets() performs the BIOs "gets" operation and places the data
35 however; for example, BIO_gets() on a digest BIO will calculate and
36 return the digest and other BIOs may not support BIO_gets() at all.
53 NUL is not included in the length returned by BIO_gets().
75 If the BIO_gets() function is not supported by a BIO then it possible to
85 BIO_gets() on 1.1.0 and older when called on BIO_fd() based BIO does not
DBIO_f_md.pod29 BIO_gets(), if its B<size> parameter is large enough finishes the
59 If an application needs to call BIO_gets() or BIO_puts() through
132 mdlen = BIO_gets(mdtmp, mdbuf, EVP_MAX_MD_SIZE);
143 BIO_gets() could be regarded as anomalous. It could be argued that BIO_gets()
DBIO_f_buffer.pod32 Both BIO_gets() and BIO_puts() are supported.
52 Buffering BIOs implement BIO_read_ex() and BIO_gets() by using
55 caller as appropriate for the call; a BIO_gets() is guaranteed to give
60 BIO_gets() or exact size BIO_read_ex() functionality if the following
DBIO_s_fd.pod24 BIO_puts() is supported but BIO_gets() is not.
86 L<BIO_gets(3)>, L<BIO_printf(3)>,
DBIO_f_cipher.pod27 Cipher BIOs do not support BIO_gets() or BIO_puts().
58 As always, if BIO_gets() or BIO_puts() support is needed then it can
DBIO_meth_new.pod105 used for reading a line of data from the BIO respectively (see the L<BIO_gets(3)>
107 application calling BIO_gets(). The parameters for the function have the same
108 meaning as for BIO_gets().
DBIO_s_file.pod32 underlying stream. BIO_gets() and BIO_puts() are supported on file BIOs.
156 L<BIO_gets(3)>, L<BIO_printf(3)>,
DBIO_s_socket.pod21 BIO_puts() is supported but BIO_gets() is not.
DBIO_f_base64.pod22 Base64 BIOs do not support BIO_gets() or BIO_puts().
DBIO_f_ssl.pod201 BIO to allow lines to be read from the SSL BIO using BIO_gets.
269 len = BIO_gets(sbio, tmpbuf, 1024);
/third_party/openssl/test/testutil/
Dstanza.c53 while (BIO_gets(s->fp, tmpbuf, sizeof(tmpbuf))) { in read_key()
91 for (s->numpairs = 0; BIO_gets(s->fp, s->buff, sizeof(s->buff)); ) { in test_readstanza()
Dtap_bio.c144 return BIO_gets(BIO_next(b), buf, size); in tap_gets()
/third_party/openssl/crypto/asn1/
Df_string.c55 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_STRING()
124 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_STRING()
Df_int.c63 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_INTEGER()
132 bufsize = BIO_gets(bp, buf, size); in a2i_ASN1_INTEGER()
Dasn_mime.c507 while ((len = BIO_gets(in, linebuf, MAX_SMLEN)) > 0) { in SMIME_crlf_copy()
586 while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) { in multi_split()
644 while ((len = BIO_gets(bio, linebuf, MAX_SMLEN)) > 0) { in STACK_OF()
/third_party/openssl/test/
Dcmsapitest.c38 if (!TEST_int_eq(BIO_gets(outmsgbio, buf, sizeof(buf)), strlen(msg)) in test_encrypt_decrypt()
Ddanetest.c158 if (!BIO_gets(f, buf, sizeof(buf))) in read_to_eol()
/third_party/openssl/crypto/bio/
Dbf_null.c114 return BIO_gets(bp->next_bio, buf, size); in nullf_gets()
Dbf_nbio.c192 return BIO_gets(bp->next_bio, buf, size); in nbiof_gets()
Dbf_lbuf.c320 return BIO_gets(b->next_bio, buf, size); in linebuffer_gets()
/third_party/openssl/apps/
Ds_client.c2209 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2223 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2255 BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2261 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2284 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2382 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2406 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2452 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2583 BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
2589 mbuf_len = BIO_gets(fbio, mbuf, BUFSIZZ); in s_client_main()
[all …]
Dbf_prefix.c171 return BIO_gets(BIO_next(b), buf, size); in prefix_gets()
Dpasswd.c269 int r = BIO_gets(in, passwd, pw_maxlen + 1); in passwd_main()
278 r = BIO_gets(in, trash, sizeof(trash)); in passwd_main()
/third_party/openssl/crypto/ocsp/
Docsp_ht.c366 n = BIO_gets(rctx->mem, (char *)rctx->iobuf, rctx->iobuflen); in OCSP_REQ_CTX_nbio()
/third_party/openssl/crypto/txt_db/
Dtxt_db.c63 BIO_gets(in, &(buf->data[offset]), size - offset); in TXT_DB_read()

12