Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
aburdulescu committed Dec 13, 2023
2 parents 3103ab8 + 1176fba commit 399c6ba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/kem/rsa/cmd/kem.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

var Cmd = &cmd.Command{
Name: "kem-rsa",
Name: "rsa-kem",
Run: run,
Brief: "Encapsulate/Decapsulate using RSA-KEM",

Expand Down
2 changes: 1 addition & 1 deletion internal/keygen/aes.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

var AesCmd = &cmd.Command{
Name: "gen-aes",
Name: "aes-keygen",
Run: runAes,
Brief: "Generate AES key",

Expand Down
2 changes: 1 addition & 1 deletion internal/keygen/ed25519.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

var Ed25519Cmd = &cmd.Command{
Name: "gen-ed25519",
Name: "ed25519-keygen",
Run: runEd25519,
Brief: "Generate ED25519 key",

Expand Down
2 changes: 1 addition & 1 deletion internal/keygen/rsa.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

var RsaCmd = &cmd.Command{
Name: "gen-rsa",
Name: "rsa-keygen",
Run: runRsa,
Brief: "Generate RSA key",

Expand Down

0 comments on commit 399c6ba

Please sign in to comment.