diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-09 10:44:57 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-08-09 10:44:57 -0400 |
commit | eb7017986d06f9721d5401aaa4ca06c1bca5e9f2 (patch) | |
tree | a9774fc3542deeb1b82e8a64d71a6686bc7f1f29 /docs/hazmat/primitives/twofactor.rst | |
parent | ba62a0ba66cdf7476dd741a0bf0f08cab518524c (diff) | |
parent | 0de6120e37e01c56df48e89c11cc5bc0c6d70e85 (diff) | |
download | cryptography-eb7017986d06f9721d5401aaa4ca06c1bca5e9f2.tar.gz cryptography-eb7017986d06f9721d5401aaa4ca06c1bca5e9f2.tar.bz2 cryptography-eb7017986d06f9721d5401aaa4ca06c1bca5e9f2.zip |
Merge pull request #2234 from reaperhulk/versionadded
add versionadded to the get_provision_uri methods on TOTP/HOTP
Diffstat (limited to 'docs/hazmat/primitives/twofactor.rst')
-rw-r--r-- | docs/hazmat/primitives/twofactor.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/hazmat/primitives/twofactor.rst b/docs/hazmat/primitives/twofactor.rst index df70a58a..9268f2fa 100644 --- a/docs/hazmat/primitives/twofactor.rst +++ b/docs/hazmat/primitives/twofactor.rst @@ -76,6 +76,8 @@ codes (HMAC). .. method:: get_provisioning_uri(account_name, counter, issuer) + .. versionadded:: 1.0 + :param account_name: The display name of account, such as ``'Alice Smith'`` or ``'alice@example.com'``. :type account_name: :term:`text` @@ -186,6 +188,8 @@ similar to the following code. .. method:: get_provisioning_uri(account_name, issuer) + .. versionadded:: 1.0 + :param account_name: The display name of account, such as ``'Alice Smith'`` or ``'alice@example.com'``. :type: :term:`text` |