diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-03-11 20:33:49 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-03-11 20:33:49 -0500 |
commit | ced1a1d1e08dcdd6bd3a5c1c91a8d197adf2d124 (patch) | |
tree | 0ff616ca012d302eeb37114a8ccb13ca9422f022 /src | |
parent | 4c0a81fa955aa3bbd69665874fb1b74ad3df6c4b (diff) | |
parent | f1d2fc0b9b4a02e4b22e0e22c11d27a039778878 (diff) | |
download | cryptography-ced1a1d1e08dcdd6bd3a5c1c91a8d197adf2d124.tar.gz cryptography-ced1a1d1e08dcdd6bd3a5c1c91a8d197adf2d124.tar.bz2 cryptography-ced1a1d1e08dcdd6bd3a5c1c91a8d197adf2d124.zip |
Merge pull request #1749 from alex/update-interface
Use the new names to reference these classes
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/ec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/ec.py b/src/cryptography/hazmat/backends/openssl/ec.py index 393a991f..c2af2be9 100644 --- a/src/cryptography/hazmat/backends/openssl/ec.py +++ b/src/cryptography/hazmat/backends/openssl/ec.py @@ -217,7 +217,7 @@ class _EllipticCurvePrivateKey(object): ) -@utils.register_interface(ec.EllipticCurvePublicKeyWithNumbers) +@utils.register_interface(ec.EllipticCurvePublicKeyWithSerialization) class _EllipticCurvePublicKey(object): def __init__(self, backend, ec_key_cdata): self._backend = backend |