From 4ef99da4918d37ce34890c78a34f28755cb34ef7 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 28 Oct 2015 11:10:46 +0900 Subject: add ellipticcurvepublicnumbers repr --- 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 7782133c..eda7df0c 100644 --- a/src/cryptography/hazmat/primitives/asymmetric/ec.py +++ b/src/cryptography/hazmat/primitives/asymmetric/ec.py @@ -302,6 +302,12 @@ class EllipticCurvePublicNumbers(object): def __ne__(self, other): return not self == other + def __repr__(self): + return ( + "".format(self) + ) + class EllipticCurvePrivateNumbers(object): def __init__(self, private_value, public_numbers): -- cgit v1.2.3