Home
last modified time | relevance | path

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

/openssl-master/doc/man3/
A DBIO_f_base64.pod46 BIO *bio, *b64;
49 b64 = BIO_new(BIO_f_base64());
51 BIO_push(b64, bio);
52 BIO_write(b64, message, strlen(message));
53 BIO_flush(b64);
55 BIO_free_all(b64);
60 BIO *bio, *b64, *bio_out;
64 b64 = BIO_new(BIO_f_base64());
67 BIO_push(b64, bio);
68 while ((inlen = BIO_read(b64, inbuf, 512)) > 0)
[all …]
A DBIO_push.pod48 For these examples suppose B<md1> and B<md2> are digest BIOs, B<b64> is
53 BIO_push(b64, f);
55 is made then the new chain will be B<b64-f>. After making the calls
57 BIO_push(md2, b64);
60 the new chain is B<md1-md2-b64-f>. Data written to B<md1> will be digested
69 The call will return B<b64> and the new chain will be B<md1-b64-f> data can
/openssl-master/apps/
A Dasn1parse.c64 BIO *in = NULL, *b64 = NULL, *derout = NULL; in asn1parse_main() local
205 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in asn1parse_main()
207 BIO_push(b64, in); in asn1parse_main()
209 in = b64; in asn1parse_main()
210 b64 = tmp; in asn1parse_main()
307 BIO_free(b64); in asn1parse_main()
A Drand.c110 BIO *b64 = BIO_new(BIO_f_base64()); in rand_main() local
111 if (b64 == NULL) in rand_main()
113 out = BIO_push(b64, out); in rand_main()
A Denc.c109 BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio = in enc_main() local
409 if ((b64 = BIO_new(BIO_f_base64())) == NULL) in enc_main()
412 BIO_set_callback_ex(b64, BIO_debug_callback_ex); in enc_main()
413 BIO_set_callback_arg(b64, (char *)bio_err); in enc_main()
416 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in enc_main()
418 wbio = BIO_push(b64, wbio); in enc_main()
420 rbio = BIO_push(b64, rbio); in enc_main()
634 BIO_free(b64); in enc_main()
/openssl-master/test/recipes/
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-master/crypto/asn1/
A Dasn_mime.c103 BIO *b64; in B64_write_ASN1() local
105 b64 = BIO_new(BIO_f_base64()); in B64_write_ASN1()
106 if (b64 == NULL) { in B64_write_ASN1()
113 out = BIO_push(b64, out); in B64_write_ASN1()
117 BIO_free(b64); in B64_write_ASN1()
136 BIO *b64; in b64_read_asn1() local
139 if ((b64 = BIO_new(BIO_f_base64())) == NULL) { in b64_read_asn1()
143 bio = BIO_push(b64, bio); in b64_read_asn1()
149 BIO_free(b64); in b64_read_asn1()
/openssl-master/apps/lib/
A Dhttp_server.c289 BIO *cbio = *pcbio, *getbio = NULL, *b64 = NULL; in http_server_get_asn1_req() local
395 || (b64 = BIO_new(BIO_f_base64())) == NULL) { in http_server_get_asn1_req()
401 BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); in http_server_get_asn1_req()
402 getbio = BIO_push(b64, getbio); in http_server_get_asn1_req()
/openssl-master/include/crypto/
A Dbn_conf.h.in25 {- $config{b64} ? "#define" : "#undef" -} SIXTY_FOUR_BIT
/openssl-master/include/openssl/
A Dconfiguration.h.in59 {- $config{b64} ? "# define" : "# undef" -} SIXTY_FOUR_BIT
/openssl-master/test/recipes/30-test_evp_data/
A Devpencod.txt167 # Multiline output with line break in the middle of a b64 block is accepted
/openssl-master/
A DConfigure1614 ($config{b64l},$config{b64},$config{b32})=(0,0,1);
1621 ($config{b64l},$config{b64},$config{b32})
1623 ($config{b64l},$config{b64},$config{b32})
1625 ($config{b64l},$config{b64},$config{b32})
/openssl-master/doc/man1/
A Dopenssl-enc.pod.in394 openssl base64 -in file.bin -out file.b64
398 openssl base64 -d -in file.b64 -out file.bin

Completed in 25 milliseconds