From 6ded6ec7673aebbb6d438b3fe7439fd2c18951dc Mon Sep 17 00:00:00 2001 From: akulij Date: Thu, 27 Feb 2025 20:01:44 +0000 Subject: [PATCH] rename project from age-gen-passphrase to age-passgen --- README.md | 2 +- cmd/age-gen-passphrase/main.go | 4 ++-- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index af18ba5..ec7e012 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Generate age keys from passphrase ## Description -This utility (age-gen-passphrase) generates secret and public keys (into stdout) from your entered passphrase or piped stdin +This utility (age-passgen) generates secret and public keys (into stdout) from your entered passphrase or piped stdin Strong password highly recomended ## Password selection diff --git a/cmd/age-gen-passphrase/main.go b/cmd/age-gen-passphrase/main.go index 1606ee6..619ad35 100644 --- a/cmd/age-gen-passphrase/main.go +++ b/cmd/age-gen-passphrase/main.go @@ -25,7 +25,7 @@ type X25519Identity struct { } const usage = `Usage: - age-gen-passphrase [-o OUTPUT] [--raw-input] + age-passgen [-o OUTPUT] [--raw-input] Options: -o, --output OUTPUT Write the result to the file at path OUTPUT. @@ -179,5 +179,5 @@ func newX25519IdentityFromScalar(secretKey []byte) (*age.X25519Identity, error) } func errorf(format string, v ...interface{}) { - log.Fatalf("age-gen-passphrase ERROR: "+format, v...) + log.Fatalf("age-passgen ERROR: "+format, v...) } diff --git a/go.mod b/go.mod index a763dbb..c00364a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/akulij/age-gen-passphrase +module github.com/akulij/age-passgen go 1.22.2