Home
last modified time | relevance | path

Searched refs:b64 (Results 1 – 13 of 13) sorted by relevance

/openssl/doc/man3/
H A DBIO_f_base64.pod58 BIO *bio, *b64;
61 b64 = BIO_new(BIO_f_base64());
63 BIO_push(b64, bio);
64 BIO_write(b64, message, strlen(message));
65 BIO_flush(b64);
67 BIO_free_all(b64);
72 BIO *bio, *b64, *bio_out;
76 b64 = BIO_new(BIO_f_base64());
79 BIO_push(b64, bio);
80 while ((inlen = BIO_read(b64, inbuf, 512)) > 0)
[all …]
H A DBIO_push.pod55 I<b64> is a base64 BIO and I<f> is a file BIO.
59 BIO_push(b64, f);
61 is made then the new chain will be I<b64-f>. After making the calls
63 BIO_push(md2, b64);
66 the new chain is I<md1-md2-b64-f>. Data written to I<md1> will be digested
77 will return I<b64> and the new chain will be I<md1-b64-f>.
/openssl/apps/
H A Drand.c112 BIO *b64 = BIO_new(BIO_f_base64()); in rand_main() local
113 if (b64 == NULL) in rand_main()
115 out = BIO_push(b64, out); in rand_main()
H A Dasn1parse.c64 BIO *in = NULL, *b64 = NULL, *derout = NULL; in asn1parse_main() local
204 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in asn1parse_main()
206 BIO_push(b64, in); in asn1parse_main()
208 in = b64; in asn1parse_main()
209 b64 = tmp; in asn1parse_main()
306 BIO_free(b64); in asn1parse_main()
H A Denc.c109 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = in enc_main() local
417 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in enc_main()
420 BIO_set_callback_ex(b64, BIO_debug_callback_ex); in enc_main()
421 BIO_set_callback_arg(b64, (char *)bio_err); in enc_main()
424 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in enc_main()
426 wbio = BIO_push(b64, wbio); in enc_main()
428 rbio = BIO_push(b64, rbio); in enc_main()
653 BIO_free(b64); in enc_main()
/openssl/test/recipes/
H A D90-test_store.t492 my $b64 = "";
495 $b64 .= $l unless $l =~ /:/;
498 my $der = decode_base64($b64);
499 unless (length($b64) / 4 * 3 - length($der) < 3) {
500 print STDERR "Length error, ",length($b64),
/openssl/crypto/asn1/
H A Dasn_mime.c108 BIO *b64; in B64_write_ASN1() local
110 b64 = BIO_new(BIO_f_base64()); in B64_write_ASN1()
111 if (b64 == NULL) { in B64_write_ASN1()
118 out = BIO_push(b64, out); in B64_write_ASN1()
122 BIO_free(b64); in B64_write_ASN1()
141 BIO *b64; in b64_read_asn1() local
144 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { in b64_read_asn1()
148 bio = BIO_push(b64, bio); in b64_read_asn1()
154 BIO_free(b64); in b64_read_asn1()
/openssl/apps/lib/
H A Dhttp_server.c298 BIO *cbio = *pcbio, *getbio = NULL, *b64 = NULL; in http_server_get_asn1_req() local
410 || (b64 = BIO_new(BIO_f_base64())) == NULL) { in http_server_get_asn1_req()
416 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in http_server_get_asn1_req()
417 getbio = BIO_push(b64, getbio); in http_server_get_asn1_req()
/openssl/include/crypto/
H A Dbn_conf.h.in25 {- $config{b64} ? "#define" : "#undef" -} SIXTY_FOUR_BIT
/openssl/include/openssl/
H A Dconfiguration.h.in59 {- $config{b64} ? "# define" : "# undef" -} SIXTY_FOUR_BIT
/openssl/test/recipes/30-test_evp_data/
H A Devpencod.txt167 # Multiline output with line break in the middle of a b64 block is accepted
/openssl/
H A DConfigure1619 ($config{b64l},$config{b64},$config{b32})=(0,0,1);
1626 ($config{b64l},$config{b64},$config{b32})
1628 ($config{b64l},$config{b64},$config{b32})
1630 ($config{b64l},$config{b64},$config{b32})
/openssl/doc/man1/
H A Dopenssl-enc.pod.in406 openssl base64 -in file.bin -out file.b64
410 openssl base64 -d -in file.b64 -out file.bin

Completed in 57 milliseconds