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.
This commit is contained in:
parent
fa7c55a0ec
commit
1f4443d858
1 changed files with 5 additions and 0 deletions
|
@ -25,6 +25,7 @@ import (
|
||||||
"go.step.sm/cli-utils/step"
|
"go.step.sm/cli-utils/step"
|
||||||
"go.step.sm/cli-utils/ui"
|
"go.step.sm/cli-utils/ui"
|
||||||
"go.step.sm/cli-utils/usage"
|
"go.step.sm/cli-utils/usage"
|
||||||
|
"go.step.sm/crypto/pemutil"
|
||||||
|
|
||||||
// Enabled kms interfaces.
|
// Enabled kms interfaces.
|
||||||
_ "go.step.sm/crypto/kms/awskms"
|
_ "go.step.sm/crypto/kms/awskms"
|
||||||
|
@ -52,6 +53,10 @@ func init() {
|
||||||
step.Set("Smallstep CA", Version, BuildTime)
|
step.Set("Smallstep CA", Version, BuildTime)
|
||||||
authority.GlobalVersion.Version = Version
|
authority.GlobalVersion.Version = Version
|
||||||
rand.Seed(time.Now().UnixNano())
|
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) {
|
func exit(code int) {
|
||||||
|
|
Loading…
Reference in a new issue