1 2 3 4 5 6 7 8 9 10
| hex.EncodeToString(src []byte) string hex.DecodeString(s string) ([]byte, error)
base64.StdEncoding.EncodeToString(src []byte) string base64.StdEncoding.DecodeString(s string) ([]byte, error)
pem.Decode(data []byte) (p *Block, rest []byte)
|