-
Notifications
You must be signed in to change notification settings - Fork 419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stop using M_ASN1_TIME_dup #431
Comments
Seems like we’re using it in only one place: pyopenssl/src/OpenSSL/crypto.py Line 1722 in 1ddb289
|
I can actually entirely replace the |
We need 1.3 anyway for the missing bindings. |
This macro is going away in OpenSSL 1.1.0.
All it really does is
ASN1_STRING_dup((const ASN1_STRING *)a)
(wherea
is anASN1_TIME
).Filing this so we remember to do something about it. On the cryptography side I will make it so the symbol is still available to avoid breaking older pyopenssl.
The text was updated successfully, but these errors were encountered: