Skip to content

Instantly share code, notes, and snippets.

View aliorouji's full-sized avatar

Ali Orouji aliorouji

  • Netherlands
View GitHub Profile
@aliorouji
aliorouji / aes_encryption.go
Created July 7, 2018 08:32 — forked from stupidbodo/aes_encryption.go
AES Encryption Example in Golang
// Playbook - http://play.golang.org/p/3wFl4lacjX
package main
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"