Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion internal/security/credz/credz.go
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,8 @@ func createHibaKeysGen(t *testing.T, hibaCa, hibaGen, keysDir string) {
hibaCa,
"-c",
"-d", keysDir, // output to the temp dir
"--", // pass the rest to ssh-keygen
"--", // pass the rest to ssh-keygen
"-t", "ed25519", // force ED25519 key type
"-q", "-N", "", // quiet, empty passphrase

)
Expand All @@ -551,6 +552,7 @@ func createHibaKeysGen(t *testing.T, hibaCa, hibaGen, keysDir string) {
"-d", keysDir,
"-u", "-I", userKey,
"--",
"-t", "ed25519",
"-q", "-N", "",
)
err = userKeyCmd.Run()
Expand All @@ -564,6 +566,7 @@ func createHibaKeysGen(t *testing.T, hibaCa, hibaGen, keysDir string) {
"-d", keysDir,
"-h", "-I", dutKey,
"--",
"-t", "ed25519",
"-q", "-N", "",
)
err = dutKeyCmd.Run()
Expand Down
Loading