aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/hazmat/primitives/twofactor.rst14
1 files changed, 8 insertions, 6 deletions
diff --git a/docs/hazmat/primitives/twofactor.rst b/docs/hazmat/primitives/twofactor.rst
index b48db599..51625dfc 100644
--- a/docs/hazmat/primitives/twofactor.rst
+++ b/docs/hazmat/primitives/twofactor.rst
@@ -41,9 +41,10 @@ codes (HMAC).
>>> hotp_value = hotp.generate(0)
>>> hotp.verify(hotp_value, 0)
- :param bytes key: Per-user secret key. This value must be kept secret
- and be at least 128 :term:`bits`. It is recommended that
- the key be 160 bits.
+ :param key: Per-user secret key. This value must be kept secret
+ and be at least 128 :term:`bits`. It is recommended that
+ the key be 160 bits.
+ :type key: :term:`bytes-like`
:param int length: Length of generated one time password as ``int``.
:param cryptography.hazmat.primitives.hashes.HashAlgorithm algorithm: A
:class:`~cryptography.hazmat.primitives.hashes`
@@ -163,9 +164,10 @@ similar to the following code.
>>> totp_value = totp.generate(time_value)
>>> totp.verify(totp_value, time_value)
- :param bytes key: Per-user secret key. This value must be kept secret
- and be at least 128 :term:`bits`. It is recommended that the
- key be 160 bits.
+ :param key: Per-user secret key. This value must be kept secret
+ and be at least 128 :term:`bits`. It is recommended that the
+ key be 160 bits.
+ :type key: :term:`bytes-like`
:param int length: Length of generated one time password as ``int``.
:param cryptography.hazmat.primitives.hashes.HashAlgorithm algorithm: A
:class:`~cryptography.hazmat.primitives.hashes`