forked from TrueCloudLab/certificates
Allow reading pin from kms string
This commit is contained in:
parent
8d7c3d2f08
commit
063a09a521
1 changed files with 6 additions and 1 deletions
|
@ -119,7 +119,12 @@ func main() {
|
|||
fatal(err)
|
||||
}
|
||||
|
||||
if u.Pin() == "" && c.Pin == "" {
|
||||
kmsPin := u.Pin()
|
||||
if c.Pin == "" && kmsPin != "" {
|
||||
c.Pin = kmsPin
|
||||
}
|
||||
|
||||
if c.Pin == "" {
|
||||
pin, err := ui.PromptPassword("What is the PKCS#11 PIN?")
|
||||
if err != nil {
|
||||
fatal(err)
|
||||
|
|
Loading…
Reference in a new issue