index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
libssl
/
bs_cbb.c
Age
Commit message (
Expand
)
Author
2022-07-07
Make CBB_finish() fail if *out_data is not NULL
Theo Buehler
2022-01-06
Provide CBB_add_u64()
Joel Sing
2021-05-16
Fix formatting of multi-line license comment per style(9).
Joel Sing
2021-05-16
Remove unnecessary includes from the bytestring APIs.
Joel Sing
2021-01-04
whitespace
Theo Buehler
2020-09-16
Avoid memset() before memcpy() for CBB_add_bytes().
Joel Sing
2020-03-13
Ensure that CBB_add_space() always provides zeroed memory.
Joel Sing
2020-03-12
Use calloc() rather than malloc() when allocating initial CBB buffer.
Joel Sing
2019-01-23
assert.h is often misused. It should not be used in a library
Bob Beck
2018-08-16
Provide CBB_add_u32(), as needed for an upcoming conversion.
Joel Sing
2017-11-28
Add CBB_discard_child(), which allows for a child CBB to be discarded.
Joel Sing
2017-08-12
Clear the child pointer in CBB_cleanup(), so that we have fewer pointers
Joel Sing
2017-05-07
Instead of starting a 'zero-sized' CBB at the size of the first addition
Joel Sing
2017-04-14
Use freezero(3) in the CBB clean up path, since this could hold sensitive
Joel Sing
2017-03-10
Switch CBB to use recallocarray() - this ensures that we do not leak
Joel Sing
2015-09-01
Make it always safe to call CBB_cleanup() providing that CBB_init() or
Joel Sing
2015-06-18
Extend the input types for CBB_add_*() to help catch bugs.
Doug Hogan
2015-06-13
Split up the logic in CBB_flush to separately handle the lengths.
Doug Hogan
2015-06-13
Explain the ASN.1 restriction that requires extra logic for encoding.
Doug Hogan
2015-06-13
When initial capacity is 0, always use NULL buffer.
Doug Hogan
2015-04-29
Call CBB_add_space() rather than reimplementing it.
Doug Hogan
2015-04-29
Rename cbb_buffer_add_u to cbb_add_u and remove redundant code.
Doug Hogan
2015-04-29
Added len_len error checking for internal cbb_buffer_add_u().
Doug Hogan
2015-02-07
Don't allow tag number 31 in CBB_add_asn1().
Doug Hogan
2015-02-07
Only call free in CBB_init().
Doug Hogan
2015-02-06
KNF bytestring files.
Doug Hogan
2015-02-06
Remove accidental, commented out code.
Doug Hogan
2015-02-06
Import BoringSSL's crypto bytestring and crypto bytebuilder APIs.
Doug Hogan