ended3월 20일· 1 sources

Secret Value Manager in Go

Go로 구현하는 비밀 값 관리자

Why it matters

This article details a secret value manager implemented in Go, covering three core components: passphrase management using PBKDF2 with SHA-256 and 100,000 iterations, secret encryption via AES-GCM with per-encryption random salts and IVs, and secret decryption. The passphrase is never stored directly; instead a derived key and salt are stored, and verification re-derives the key with the same salt for comparison.

1
Sources
+0
24h
Growth
176d
Active
GoAES-GCMPBKDF2encryptionpassphrase management

Sources

Related Issues