Support to ask for key password after crypto change

A change in crypto will remove the dependency of the ui package
used for prompting passwords.
pull/1073/head
Mariano Cano 2 years ago
parent fa7c55a0ec
commit 1f4443d858
No known key found for this signature in database

@ -25,6 +25,7 @@ import (
"go.step.sm/cli-utils/step"
"go.step.sm/cli-utils/ui"
"go.step.sm/cli-utils/usage"
"go.step.sm/crypto/pemutil"
// Enabled kms interfaces.
_ "go.step.sm/crypto/kms/awskms"
@ -52,6 +53,10 @@ func init() {
step.Set("Smallstep CA", Version, BuildTime)
authority.GlobalVersion.Version = Version
rand.Seed(time.Now().UnixNano())
// Add support for asking passwords
pemutil.PromptPassword = func(msg string) ([]byte, error) {
return ui.PromptPassword(msg)
}
}
func exit(code int) {

Loading…
Cancel
Save