Skip to content

Instantly share code, notes, and snippets.

View madushadhanushka's full-sized avatar
🎯
Focusing

Dhanushka Madushan madushadhanushka

🎯
Focusing
View GitHub Profile
@stupidbodo
stupidbodo / aes_encryption.go
Last active February 20, 2025 12:09
AES Encryption Example in Golang
// Playbook - http://play.golang.org/p/3wFl4lacjX
package main
import (
"bytes"
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"encoding/base64"