File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,6 @@ func (c *cfg) decryptPrivateKey(ctx context.Context) errs.Err {
49
49
return errNotInitialized
50
50
}
51
51
52
- c .decryptKeysEncrypted (ctx )
53
-
54
52
var err error
55
53
56
54
var out []byte
@@ -69,6 +67,23 @@ func (c *cfg) decryptPrivateKey(ctx context.Context) errs.Err {
69
67
}
70
68
}
71
69
70
+ if c .privateKey .IsNil () {
71
+ c .decryptKeysEncrypted (ctx )
72
+ keys := c .keys .Keys ()
73
+
74
+ for i := range c .DecryptKeys {
75
+ out , err = c .DecryptKeys [i ].PrivateKey .Decrypt (keys )
76
+ if err == nil {
77
+ k , err := cryptolib.ParseKey [cryptolib.KeyProviderPrivate ](string (out ))
78
+ if err == nil {
79
+ c .privateKey = k
80
+
81
+ break
82
+ }
83
+ }
84
+ }
85
+ }
86
+
72
87
if err != nil {
73
88
return logger .Error (ctx , errs .ErrReceiver .Wrap (err ))
74
89
}
Submodule shared updated from 7866111 to 771629e
You can’t perform that action at this time.
0 commit comments