| commit | 451758559ce87c7003577d1746dce904bbde49f4 | [log] [tgz] |
|---|---|---|
| author | Alex Gaynor <[email protected]> | Sun Nov 23 13:58:58 2025 |
| committer | GitHub <[email protected]> | Sun Nov 23 13:58:58 2025 |
| tree | 8268e637365cf029e9768776b2a1027b938b531e | |
| parent | d7c41d372c321b193d2a2020309adbeb65d44fb5 [diff] |
Refactor ASN1_STRING access to use accessor functions (#1462) Replace direct access to .data and .length attributes with ASN1_STRING_get0_data() and ASN1_STRING_length() accessor functions in the X509Extension._subjectAltNameString() method. This improves compatibility with OpenSSL's opaque structure design and follows the pattern used elsewhere in the codebase. Co-authored-by: Claude <[email protected]>