diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2014-06-25 18:41:44 +0100 |
---|---|---|
committer | Alex Stapleton <alexs@prol.etari.at> | 2014-06-25 18:41:44 +0100 |
commit | 1d1855cec99f65bf32e1c52bb0b8aa5d06bcc78b (patch) | |
tree | b8bec6f11f39147bf687f1b5a8858ca5b29fcf3f /docs/hazmat/primitives/asymmetric | |
parent | 0690f91e01472f0b233a74ddd0c5d4211e14ea68 (diff) | |
parent | beb1f0c6fe2a4b64d78ed9e84d887cf372929276 (diff) | |
download | cryptography-1d1855cec99f65bf32e1c52bb0b8aa5d06bcc78b.tar.gz cryptography-1d1855cec99f65bf32e1c52bb0b8aa5d06bcc78b.tar.bz2 cryptography-1d1855cec99f65bf32e1c52bb0b8aa5d06bcc78b.zip |
Merge pull request #1173 from Ayrx/ecc-fix
Fixed Fedora 20 ECC error
Diffstat (limited to 'docs/hazmat/primitives/asymmetric')
-rw-r--r-- | docs/hazmat/primitives/asymmetric/ec.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/asymmetric/ec.rst b/docs/hazmat/primitives/asymmetric/ec.rst index 5dc7e2f0..4b3c460e 100644 --- a/docs/hazmat/primitives/asymmetric/ec.rst +++ b/docs/hazmat/primitives/asymmetric/ec.rst @@ -116,7 +116,7 @@ Elliptic Curve Signature Algorithms >>> from cryptography.hazmat.primitives import hashes >>> from cryptography.hazmat.primitives.asymmetric import ec >>> private_key = ec.generate_private_key( - ... ec.SECT283K1(), default_backend() + ... ec.SECP384R1(), default_backend() ... ) >>> signer = private_key.signer(ec.ECDSA(hashes.SHA256())) >>> signer.update(b"this is some data I'd like") |