Merge pull request #4274 from haydenroche5/pyopenssl

Add support for pyOpenSSL.
This commit is contained in:
David Garske
2021-08-10 11:49:07 -07:00
committed by GitHub
8 changed files with 135 additions and 5 deletions

View File

@@ -8360,6 +8360,11 @@ static int DecodeAltNames(const byte* input, int sz, DecodedCert* cert)
return ASN_PARSE_E;
}
#ifdef OPENSSL_ALL
cert->extSubjAltNameSrc = input;
cert->extSubjAltNameSz = sz;
#endif
cert->weOwnAltNames = 1;
while (length > 0) {