diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-07-07 16:42:45 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-07-07 16:42:45 -0500 |
commit | 28ab45482ec35b9ce417352151cac9b213bae6f2 (patch) | |
tree | f83747b0dff288127fcf66ac22960d4ef46bdbf2 /src | |
parent | 11bd1a13627098468707177a1e1fddfc92601ff3 (diff) | |
parent | eb2df546027650469768c9ad1571df96e423206a (diff) | |
download | cryptography-28ab45482ec35b9ce417352151cac9b213bae6f2.tar.gz cryptography-28ab45482ec35b9ce417352151cac9b213bae6f2.tar.bz2 cryptography-28ab45482ec35b9ce417352151cac9b213bae6f2.zip |
Merge pull request #2126 from alex/csr-eq
Fixed #2121 -- added __eq__ and __ne__ to CSRs
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/x509.py | 11 | ||||
-rw-r--r-- | src/cryptography/x509.py | 12 |
2 files changed, 23 insertions, 0 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py index 7bfeb2ce..3b1ff790 100644 --- a/src/cryptography/hazmat/backends/openssl/x509.py +++ b/src/cryptography/hazmat/backends/openssl/x509.py @@ -701,6 +701,17 @@ class _CertificateSigningRequest(object): self._backend = backend self._x509_req = x509_req + def __eq__(self, other): + if not isinstance(other, _CertificateSigningRequest): + return NotImplemented + + self_bytes = self.public_bytes(serialization.Encoding.DER) + other_bytes = other.public_bytes(serialization.Encoding.DER) + return self_bytes == other_bytes + + def __ne__(self, other): + return not self == other + def public_key(self): pkey = self._backend._lib.X509_REQ_get_pubkey(self._x509_req) assert pkey != self._backend._ffi.NULL diff --git a/src/cryptography/x509.py b/src/cryptography/x509.py index afd28f20..fb21be2b 100644 --- a/src/cryptography/x509.py +++ b/src/cryptography/x509.py @@ -1392,6 +1392,18 @@ class CertificateRevocationList(object): @six.add_metaclass(abc.ABCMeta) class CertificateSigningRequest(object): @abc.abstractmethod + def __eq__(self, other): + """ + Checks equality. + """ + + @abc.abstractmethod + def __ne__(self, other): + """ + Checks not equal. + """ + + @abc.abstractmethod def public_key(self): """ Returns the public key |