diff options
author | Michael Schlenker <Michael.Schlenker@contact-software.com> | 2015-04-03 19:20:24 +0200 |
---|---|---|
committer | Michael Schlenker <Michael.Schlenker@contact-software.com> | 2015-04-03 19:25:30 +0200 |
commit | e73c1c97a16ec7383b33edbb6b3998a37769b316 (patch) | |
tree | 6b6a13a8c691d6b2c39cbcae76efcc962891cc98 | |
parent | cdf3d3be6f9a8a017fb44a646cab51fbd2c6bd23 (diff) | |
download | cryptography-e73c1c97a16ec7383b33edbb6b3998a37769b316.tar.gz cryptography-e73c1c97a16ec7383b33edbb6b3998a37769b316.tar.bz2 cryptography-e73c1c97a16ec7383b33edbb6b3998a37769b316.zip |
More CRL related bindings
Some of those are needed to implement pyca/pyopenssl#181, others are just
for having a complete useful set.
Might be a nice fit for the new X509Extension work, as the extensions for
CRLs and Revoked objects have the same type.
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/x509.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/x509.py b/src/cryptography/hazmat/bindings/openssl/x509.py index e867450b..6e275fea 100644 --- a/src/cryptography/hazmat/bindings/openssl/x509.py +++ b/src/cryptography/hazmat/bindings/openssl/x509.py @@ -168,6 +168,9 @@ void X509_REVOKED_free(X509_REVOKED *); int X509_REVOKED_set_serialNumber(X509_REVOKED *, ASN1_INTEGER *); +int X509_REVOKED_get_ext_count(X509_REVOKED *); +X509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *, int); +int X509_REVOKED_add_ext(X509_REVOKED *, X509_EXTENSION*, int); int X509_REVOKED_add1_ext_i2d(X509_REVOKED *, int, void *, int, unsigned long); X509_CRL *d2i_X509_CRL_bio(BIO *, X509_CRL **); @@ -178,6 +181,9 @@ int i2d_X509_CRL_bio(BIO *, X509_CRL *); int X509_CRL_print(BIO *, X509_CRL *); int X509_CRL_set_issuer_name(X509_CRL *, X509_NAME *); int X509_CRL_sign(X509_CRL *, EVP_PKEY *, const EVP_MD *); +int X509_CRL_get_ext_count(X509_CRL *); +X509_EXTENSION *X509_CRL_get_ext(X509_CRL *, int); +int X509_CRL_add_ext(X509_CRL *, X509_EXTENSION *, int); int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *, EVP_PKEY *); int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *, EVP_PKEY *, const EVP_MD *); @@ -267,6 +273,11 @@ int i2d_RSAPrivateKey(RSA *, unsigned char **); int i2d_DSAPublicKey(DSA *, unsigned char **); int i2d_DSAPrivateKey(DSA *, unsigned char **); +int X509_CRL_get_version(X509_CRL *); +ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *); +ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *); +X509_NAME *X509_CRL_get_issuer(X509_CRL *); + /* These aren't macros these arguments are all const X on openssl > 1.0.x */ int X509_CRL_set_lastUpdate(X509_CRL *, ASN1_TIME *); int X509_CRL_set_nextUpdate(X509_CRL *, ASN1_TIME *); |