This file contains 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
package main | |
// Usage: | |
// copy this code to https://replit.com/languages/go | |
// and change the encrypted_password variable below (see comments below for steps to acquite the encrypted password) | |
import ( | |
"crypto/aes" | |
"crypto/cipher" | |
"encoding/base64" |