Created
May 19, 2018 09:33
-
-
Save mengzhuo/218d7f801045cf82e3f69780dd6cdaff to your computer and use it in GitHub Desktop.
decode nonstd base64
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 | |
import ( | |
"encoding/base64" | |
"fmt" | |
) | |
var table = []byte{'v', 'w', 'x', 'r', 's', 't', 'u', 'o', 'p', 'q', '3', '4', '5', '6', '7', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'y', 'z', '0', '1', | |
'2', 'P', 'Q', 'R', 'S', 'T', 'K', 'L', 'M', 'N', 'O', 'Z', 'a', 'b', 'c', 'd', 'U', 'V', 'W', 'X', 'Y', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', '8', '9', | |
'+', '/'} | |
func main() { | |
str := "5rFf7E2K6rqN7Hpiyush7E6S5fJg6rsi5NBf6NGT5rs=" | |
data, _ := base64.NewEncoding(string(table)).DecodeString(str) | |
fmt.Println("%s", data) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment