aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDirkjan Ochtman <dirkjan@ochtman.nl>2016-06-22 13:16:57 +0200
committerAlex Gaynor <alex.gaynor@gmail.com>2016-06-22 07:16:57 -0400
commitbfd374469ba7a91969fff03285fccdd0b2f9e759 (patch)
treec1330827ebea0e0662ce4b20df9439fe9fc7ced7 /src
parent72a7b9b5fa5e39c99dd08428e687f281e00cfe1c (diff)
downloadcryptography-bfd374469ba7a91969fff03285fccdd0b2f9e759.tar.gz
cryptography-bfd374469ba7a91969fff03285fccdd0b2f9e759.tar.bz2
cryptography-bfd374469ba7a91969fff03285fccdd0b2f9e759.zip
Use `d` instead of `private_exponent` for consistency (#2991)
True story: I used `e` instead of `d` because it seemed more closely related to `e`. Should have looked it up, of course... but the docs could be better.
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/hazmat/primitives/asymmetric/rsa.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptography/hazmat/primitives/asymmetric/rsa.py b/src/cryptography/hazmat/primitives/asymmetric/rsa.py
index 2cb89515..d78b1b41 100644
--- a/src/cryptography/hazmat/primitives/asymmetric/rsa.py
+++ b/src/cryptography/hazmat/primitives/asymmetric/rsa.py
@@ -199,7 +199,7 @@ def rsa_crt_iqmp(p, q):
def rsa_crt_dmp1(private_exponent, p):
"""
Compute the CRT private_exponent % (p - 1) value from the RSA
- private_exponent and p.
+ private_exponent (d) and p.
"""
return private_exponent % (p - 1)
@@ -207,7 +207,7 @@ def rsa_crt_dmp1(private_exponent, p):
def rsa_crt_dmq1(private_exponent, q):
"""
Compute the CRT private_exponent % (q - 1) value from the RSA
- private_exponent and q.
+ private_exponent (d) and q.
"""
return private_exponent % (q - 1)