blob: 3cf02c39c3eed8fb67c06e4e5ef07b28e63094c2 [file] [log] [blame]
David Horstmannb91ba4b2023-02-15 13:07:49 +00001Bugfix
2 * Fix bug in conversion from OID to string in
3 mbedtls_oid_get_numeric_string(). OIDs such as 2.40.0.25 are now printed
4 correctly.
5 * Reject OIDs with overlong-encoded subidentifiers when converting
Demi Marie Obenour6b8e8ff2023-03-11 17:45:28 -05006 them to a string.
7 * Reject OIDs with subidentifier values exceeding UINT_MAX. Such
8 subidentifiers can be valid, but Mbed TLS cannot currently handle them.
9 * Reject OIDs that have unterminated subidentifiers, or (equivalently)
10 have the most-significant bit set in their last byte.