Skip to content

Instantly share code, notes, and snippets.

View UnderGrounder96's full-sized avatar
🌀

Lucio Afonso UnderGrounder96

🌀
View GitHub Profile
@UnderGrounder96
UnderGrounder96 / key_enc.py
Last active May 8, 2022 20:42
Create secret keys using python
#!/usr/bin/env python3
import crypt
import getpass
# password encryptor, asks for password
print(crypt.crypt(getpass.getpass()))