From c16de483685b0d5afa77bd88bd4a561b09e899b1 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 30 Apr 2016 18:57:15 -0400 Subject: Fixed #2887 -- implement __hash__ on EC numbers classes (#2888) --- src/cryptography/hazmat/primitives/asymmetric/ec.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/cryptography/hazmat/primitives/asymmetric/ec.py b/src/cryptography/hazmat/primitives/asymmetric/ec.py index eda7df0c..907a6358 100644 --- a/src/cryptography/hazmat/primitives/asymmetric/ec.py +++ b/src/cryptography/hazmat/primitives/asymmetric/ec.py @@ -302,6 +302,9 @@ class EllipticCurvePublicNumbers(object): def __ne__(self, other): return not self == other + def __hash__(self): + return hash((self.x, self.y, self.curve.name, self.curve.key_size)) + def __repr__(self): return ( "