aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Stapleton <alexs@prol.etari.at>2014-06-25 18:41:44 +0100
committerAlex Stapleton <alexs@prol.etari.at>2014-06-25 18:41:44 +0100
commit1d1855cec99f65bf32e1c52bb0b8aa5d06bcc78b (patch)
treeb8bec6f11f39147bf687f1b5a8858ca5b29fcf3f /docs
parent0690f91e01472f0b233a74ddd0c5d4211e14ea68 (diff)
parentbeb1f0c6fe2a4b64d78ed9e84d887cf372929276 (diff)
downloadcryptography-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')
-rw-r--r--docs/hazmat/primitives/asymmetric/ec.rst2
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")