forked from TrueCloudLab/restic
Pass in a nil buffer to Open()
This commit is contained in:
parent
bb435b39d9
commit
6d46824fb0
1 changed files with 1 additions and 2 deletions
|
@ -88,8 +88,7 @@ func OpenKey(ctx context.Context, s *Repository, name string, password string) (
|
||||||
|
|
||||||
// decrypt master keys
|
// decrypt master keys
|
||||||
nonce, ciphertext := k.Data[:k.user.NonceSize()], k.Data[k.user.NonceSize():]
|
nonce, ciphertext := k.Data[:k.user.NonceSize()], k.Data[k.user.NonceSize():]
|
||||||
buf := make([]byte, 0, len(ciphertext))
|
buf, err := k.user.Open(nil, nonce, ciphertext, nil)
|
||||||
buf, err = k.user.Open(buf, nonce, ciphertext, nil)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue