From b2179bab04d0fdf1401ab263cddf6bf033aea676 Mon Sep 17 00:00:00 2001 From: David Fischer <djfische@gmail.com> Date: Fri, 15 Mar 2013 23:52:59 -0700 Subject: [PATCH] Cleanup some doc strings --- nacl/signing.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nacl/signing.py b/nacl/signing.py index f08e3abf..c1067cb0 100644 --- a/nacl/signing.py +++ b/nacl/signing.py @@ -16,7 +16,8 @@ class BadSignatureError(CryptoError): class SignedMessage(six.binary_type): """ - A bytes subclass that holds a messaged that has been signed by a :class:`SigningKey`. + A bytes subclass that holds a messaged that has been signed by a + :class:`SigningKey`. """ @classmethod @@ -99,8 +100,8 @@ class SigningKey(encoding.Encodable, six.StringFixer, object): Private key for producing digital signatures using the Ed25519 algorithm. Signing keys are produced from a 32-byte (256-bit) random seed value. This - value can be passed into the :class:`~nacl.signing.SigningKey` as a :func:`bytes` - whose length is 32. + value can be passed into the :class:`~nacl.signing.SigningKey` as a + :func:`bytes` whose length is 32. .. warning:: This **must** be protected and remain secret. Anyone who knows the value of your :class:`~nacl.signing.SigningKey` or it's seed can -- GitLab