Articles:
A Tour of Go Cryptography Part 1: Hashing
SHA256 hashing of a string
go run 1-hashing/hash.go
Encrypting and decrypting a string with AES with input from the command line
$ go run 2-symmetric-encryption/encrypt.go helloworld
> Encrypted: 0rP4UAf/+zPKag==
$ go run 2-symmetric-encryption/decrypt.go 0rP4UAf/+zPKag==
> Decrypted: helloworld