rename project from age-gen-passphrase to age-passgen

This commit is contained in:
akulij 2025-02-27 20:01:44 +00:00
parent 5522a1265e
commit 6ded6ec767
3 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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...)
}

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/akulij/age-gen-passphrase
module github.com/akulij/age-passgen
go 1.22.2