David Horstmann | b91ba4b | 2023-02-15 13:07:49 +0000 | [diff] [blame] | 1 | Bugfix |
| 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 Obenour | 6b8e8ff | 2023-03-11 17:45:28 -0500 | [diff] [blame] | 6 | 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. |