diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-07-16 20:49:51 +0530 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2018-07-16 11:19:51 -0400 |
commit | 5d187402775bcb7bc8b0da1d972d36bf9ad9dbff (patch) | |
tree | caaf2870b516da1bfe027ef6b1886bc1ed66f300 /src/_cffi_src/openssl | |
parent | 2e85a925b49e566776585f35a7c0653510d84262 (diff) | |
download | cryptography-5d187402775bcb7bc8b0da1d972d36bf9ad9dbff.tar.gz cryptography-5d187402775bcb7bc8b0da1d972d36bf9ad9dbff.tar.bz2 cryptography-5d187402775bcb7bc8b0da1d972d36bf9ad9dbff.zip |
add crl.get_revoked_certificate method (#4331)
* add crl.get_revoked_certificate method
* lexicographic is the best ographic
* rename
Diffstat (limited to 'src/_cffi_src/openssl')
-rw-r--r-- | src/_cffi_src/openssl/x509.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/x509.py b/src/_cffi_src/openssl/x509.py index 97ade5bc..59fdbf7e 100644 --- a/src/_cffi_src/openssl/x509.py +++ b/src/_cffi_src/openssl/x509.py @@ -238,6 +238,8 @@ X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *, int); X509_EXTENSION *X509_CRL_get_ext(X509_CRL *, int); int X509_CRL_get_ext_count(X509_CRL *); +int X509_CRL_get0_by_serial(X509_CRL *, X509_REVOKED **, ASN1_INTEGER *); + /* these CRYPTO_EX_DATA functions became macros in 1.1.0 */ int X509_get_ex_new_index(long, void *, CRYPTO_EX_new *, CRYPTO_EX_dup *, CRYPTO_EX_free *); |