(err error)
| 23 | |
| 24 | |
| 25 | func checkErr(err error) { |
| 26 | if err != nil { |
| 27 | if err.Error() != "The operation completed successfully." { |
| 28 | println(err.Error()) |
| 29 | os.Exit(1) |
| 30 | } |
| 31 | } |
| 32 | } |
| 33 | func Xor(src string) string { |
| 34 | var XorKey = []byte{0x74, 0x69, 0x64, 0x65, 0x62, 0x79, 0x70, 0x61, 0x73, 0x73} //tidesec |
| 35 | var result string |