diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-24 21:04:45 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2015-02-24 21:04:45 -0600 |
commit | 0fd652bb18e1925cae8302cfabe684381d3ebfab (patch) | |
tree | 8902c43d8135e6f26e6130d5199b5990a00246c9 /docs/hazmat/primitives/twofactor.rst | |
parent | 4733b47c9a6da998f01aee77c0ffb8c3bb321f5c (diff) | |
parent | 2c526050c27e212e09ede57c8aca97d60c353e94 (diff) | |
download | cryptography-0fd652bb18e1925cae8302cfabe684381d3ebfab.tar.gz cryptography-0fd652bb18e1925cae8302cfabe684381d3ebfab.tar.bz2 cryptography-0fd652bb18e1925cae8302cfabe684381d3ebfab.zip |
Merge pull request #1698 from alex/docs-syntax-error
Fixed a syntax error in the docs
Diffstat (limited to 'docs/hazmat/primitives/twofactor.rst')
-rw-r--r-- | docs/hazmat/primitives/twofactor.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/hazmat/primitives/twofactor.rst b/docs/hazmat/primitives/twofactor.rst index 0d86f7cc..89d81222 100644 --- a/docs/hazmat/primitives/twofactor.rst +++ b/docs/hazmat/primitives/twofactor.rst @@ -39,7 +39,7 @@ codes (HMAC). and be at least 128 bits. It is recommended that the key be 160 bits. :param int length: Length of generated one time password as ``int``. - :param HashAlgorithm algorithm: A + :param cryptography.hazmat.primitives.hashes.HashAlgorithm algorithm: A :class:`~cryptography.hazmat.primitives.hashes` provider. :param backend: A @@ -137,7 +137,7 @@ similar to the following code. and be at least 128 bits. It is recommended that the key be 160 bits. :param int length: Length of generated one time password as ``int``. - :param HashAlgorithm algorithm: A + :param cryptography.hazmat.primitives.hashes.HashAlgorithm algorithm: A :class:`~cryptography.hazmat.primitives.hashes` provider. :param int time_step: The time step size. The recommended size is 30. |