This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| try: | |
| import argparse | |
| from getpass import getpass | |
| from secrets import token_bytes | |
| from binascii import b2a_base64 | |
| from hashlib import pbkdf2_hmac | |
| except ImportError as err: | |
| print('Python 3.6 or newer is required!\n') |