mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18:34 +00:00
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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user