From 8f568e0b29e7f734b0e18fe136b6dcad4bf9dc83 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 11 Jun 2014 23:12:50 -0500 Subject: indent the proper amount --- cryptography/hazmat/primitives/asymmetric/rsa.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cryptography/hazmat/primitives/asymmetric/rsa.py b/cryptography/hazmat/primitives/asymmetric/rsa.py index 4f4e257b..a4e6cb71 100644 --- a/cryptography/hazmat/primitives/asymmetric/rsa.py +++ b/cryptography/hazmat/primitives/asymmetric/rsa.py @@ -83,14 +83,14 @@ def _check_private_key_components(p, q, private_exponent, dmp1, dmq1, iqmp, def _check_public_key_components(e, n): - if n < 3: - raise ValueError("n must be >= 3.") + if n < 3: + raise ValueError("n must be >= 3.") - if e < 3 or e >= n: - raise ValueError("e must be >= 3 and < n.") + if e < 3 or e >= n: + raise ValueError("e must be >= 3 and < n.") - if e & 1 == 0: - raise ValueError("e must be odd.") + if e & 1 == 0: + raise ValueError("e must be odd.") @utils.register_interface(interfaces.RSAPublicKey) -- cgit v1.2.3