I hereby claim:
- I am zhexuany on github.
- I am zhexuany (https://keybase.io/zhexuany) on keybase.
- I have a public key ASCSaCblfAsAfu3_NCSZS03UdF_3KkijpJUMTct7gONqQwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
package main | |
import "fmt" | |
func main() { | |
key := "BADboy" | |
msg := "This is fun!" | |
cm, cmr := initMap() | |
fmt.Println(encode(msg, key, cm, cmr)) | |
fmt.Println(decode(encode(msg, key, cm, cmr), key, cm, cmr)) |
package main | |
import ( | |
"fmt" | |
) | |
type Foo interface { | |
Bar() | |
} |