diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-10-28 19:37:39 -0500 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2013-10-28 19:37:39 -0500 |
commit | ca8ed2953a1602fdceaee86d44b77d27f135926b (patch) | |
tree | be22d097b2ff2aa5e7dc0ff4dd7e590928c34b29 /docs/hazmat | |
parent | bf8962a22b18e022085eec797ca64c1242564b21 (diff) | |
download | cryptography-ca8ed2953a1602fdceaee86d44b77d27f135926b.tar.gz cryptography-ca8ed2953a1602fdceaee86d44b77d27f135926b.tar.bz2 cryptography-ca8ed2953a1602fdceaee86d44b77d27f135926b.zip |
fix indentation error and wrapping in docs
Diffstat (limited to 'docs/hazmat')
-rw-r--r-- | docs/hazmat/primitives/hmac.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/hazmat/primitives/hmac.rst b/docs/hazmat/primitives/hmac.rst index 702df2c7..aec406b9 100644 --- a/docs/hazmat/primitives/hmac.rst +++ b/docs/hazmat/primitives/hmac.rst @@ -20,9 +20,10 @@ message. .. class:: cryptography.hazmat.primitives.hmac.HMAC(key, msg=None, digestmod=None) - HMAC objects take a ``key``, a hash class derived from :class:`~cryptography.primitives.hashes.BaseHash`, - and optional msg. The ``key`` should be randomly generated bytes and - the length of the ``block_size`` of the hash. You must keep the ``key`` secret. + HMAC objects take a ``key``, a hash class derived from + :class:`~cryptography.primitives.hashes.BaseHash`, and optional msg. The + ``key`` should be randomly generated bytes and the length of the + ``block_size`` of the hash. You must keep the ``key`` secret. .. doctest:: |