Skip to content

Instantly share code, notes, and snippets.

View 3dprogramin's full-sized avatar

Andrei 3dprogramin

View GitHub Profile
@3dprogramin
3dprogramin / aes.go
Created November 9, 2021 09:13 — forked from willshiao/aes.go
AES 256-CFB in Node.js, Go, and Python
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"fmt"
"io"