Files
simple-privacy-tool/main.go
Suyono 64e4ca400f feat(argon2id cost param): enable user to modify the cost param
feat(hint): embed argon2 custom param as hint
feat(aes): add AES-GCM as algo
fix(stdin/stdout): fixed STDIN/STDOUT issue
2023-07-27 15:19:02 +10:00

10 lines
116 B
Go

package main
import (
"gitea.suyono.dev/suyono/simple-privacy-tool/cmd/spt"
)
func main() {
_ = spt.Execute()
}