diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-01 15:37:08 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-05-01 20:29:56 -0500 |
commit | 913ac19df1037fe6c0c87c18712ceef14145df7e (patch) | |
tree | 0c94e1b48f076c0261f4b5fb7da56cb9a810a1ac | |
parent | 0b3ff3b09b71f93ec278e0da73d27b5976241721 (diff) | |
download | cryptography-913ac19df1037fe6c0c87c18712ceef14145df7e.tar.gz cryptography-913ac19df1037fe6c0c87c18712ceef14145df7e.tar.bz2 cryptography-913ac19df1037fe6c0c87c18712ceef14145df7e.zip |
remove an unneeded line in the example
-rw-r--r-- | docs/hazmat/primitives/asymmetric/dsa.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/hazmat/primitives/asymmetric/dsa.rst b/docs/hazmat/primitives/asymmetric/dsa.rst index 98aebb6b..1d58ccef 100644 --- a/docs/hazmat/primitives/asymmetric/dsa.rst +++ b/docs/hazmat/primitives/asymmetric/dsa.rst @@ -123,7 +123,6 @@ DSA >>> data= b"this is some data I'd like to sign" >>> signer.update(data) >>> signature = signer.finalize() - >>> public_key = private_key.public_key() :param algorithm: An instance of a :class:`~cryptography.hazmat.primitives.interfaces.HashAlgorithm` |