David Horstmann | 1923c91 | 2023-08-18 19:01:10 +0100 | [diff] [blame] | 1 | Bugfix |
| 2 | * Fix an issue when parsing an otherName subject alternative name into a |
| 3 | mbedtls_x509_san_other_name struct. The type-id of the otherName was not |
David Horstmann | 43f7602 | 2023-08-21 17:34:45 +0100 | [diff] [blame] | 4 | copied to the struct. This meant that the struct had incomplete |
David Horstmann | 1923c91 | 2023-08-18 19:01:10 +0100 | [diff] [blame] | 5 | information about the otherName SAN and contained uninitialized memory. |
| 6 | * Fix the detection of HardwareModuleName otherName SANs. These were being |
| 7 | detected by comparing the wrong field and the check was erroneously |
David Horstmann | 43f7602 | 2023-08-21 17:34:45 +0100 | [diff] [blame] | 8 | inverted. |