OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bio_b64
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/bsd/pam-u2f/dist/
b64.c
14
BIO *
bio_b64
= NULL;
local
26
bio_b64
= BIO_new(BIO_f_base64());
27
if (
bio_b64
== NULL)
34
BIO_set_flags(
bio_b64
, BIO_FLAGS_BASE64_NO_NL);
35
BIO_push(
bio_b64
, bio_mem);
37
n = BIO_write(
bio_b64
, ptr, (int) len);
41
if (BIO_flush(
bio_b64
) < 0)
44
b64_len = BIO_get_mem_data(
bio_b64
, &b64_ptr);
56
BIO_free(
bio_b64
);
64
BIO *
bio_b64
= NULL
local
[
all
...]
/src/external/bsd/libfido2/dist/tools/
base64.c
21
BIO *
bio_b64
= NULL;
local
33
if ((
bio_b64
= BIO_new(BIO_f_base64())) == NULL)
38
BIO_set_flags(
bio_b64
, BIO_FLAGS_BASE64_NO_NL);
39
BIO_push(
bio_b64
, bio_mem);
41
n = BIO_write(
bio_b64
, ptr, (int)len);
45
if (BIO_flush(
bio_b64
) < 0)
48
b64_len = BIO_get_mem_data(
bio_b64
, &b64_ptr);
58
BIO_free(
bio_b64
);
68
BIO *
bio_b64
= NULL;
local
79
if ((
bio_b64
= BIO_new(BIO_f_base64())) == NULL
[
all
...]
Completed in 32 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026