Skip to content

Instantly share code, notes, and snippets.

View privateducky's full-sized avatar
💭
418 402 401 429

privateducky privateducky

💭
418 402 401 429
View GitHub Profile
@willshiao
willshiao / aes.go
Last active January 19, 2024 16:18
AES 256-CFB in Node.js, Go, and Python
package main
import (
"crypto/aes"
"crypto/cipher"
"crypto/rand"
"crypto/sha256"
"encoding/base64"
"fmt"
"io"