diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-15 18:57:11 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-15 18:57:11 -0800 |
commit | c5b0aa06a7cc843578523acb847646f3881df27f (patch) | |
tree | e663368d48377c6c61a264a9071734acfd5795fe /docs/hazmat/primitives/rsa.rst | |
parent | 1deb6872567a76a547274737b3d6348940d15e8b (diff) | |
parent | b557045ae353e98e869088714e4f433383f87ce5 (diff) | |
download | cryptography-c5b0aa06a7cc843578523acb847646f3881df27f.tar.gz cryptography-c5b0aa06a7cc843578523acb847646f3881df27f.tar.bz2 cryptography-c5b0aa06a7cc843578523acb847646f3881df27f.zip |
Merge pull request #605 from reaperhulk/add-crt-coefficients
Add RSA CRT Coefficients
Diffstat (limited to 'docs/hazmat/primitives/rsa.rst')
-rw-r--r-- | docs/hazmat/primitives/rsa.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/rsa.rst b/docs/hazmat/primitives/rsa.rst index 2875b209..e7ec4749 100644 --- a/docs/hazmat/primitives/rsa.rst +++ b/docs/hazmat/primitives/rsa.rst @@ -7,7 +7,8 @@ RSA `RSA`_ is a `public-key`_ algorithm for encrypting and signing messages. -.. class:: RSAPrivateKey(p, q, private_exponent, public_exponent, modulus) +.. class:: RSAPrivateKey(p, q, private_exponent, dmp1, dmq1, iqmp, + public_exponent, modulus) .. versionadded:: 0.2 |