Returns a time-based one-time password based on the Google Authenticator algorithm for multi-factor authentication.
(self, totp_key=None)
| 1709 | ) |
| 1710 | |
| 1711 | def get_mfa_code(self, totp_key=None): |
| 1712 | """Returns a time-based one-time password based on the Google |
| 1713 | Authenticator algorithm for multi-factor authentication.""" |
| 1714 | return shared_utils.get_mfa_code(totp_key) |
| 1715 | |
| 1716 | def enter_mfa_code(self, selector, totp_key=None, timeout=None): |
| 1717 | if not timeout: |