mirror of
https://github.com/octoleo/restic.git
synced 2024-11-29 16:23:59 +00:00
Correct length of plaintext before decryption
This commit is contained in:
parent
2462f93533
commit
68141c738b
2
key.go
2
key.go
@ -498,8 +498,8 @@ func (k *Key) decrypt(ks *keys, plaintext, ciphertext []byte) ([]byte, error) {
|
|||||||
|
|
||||||
// decrypt
|
// decrypt
|
||||||
e := cipher.NewCTR(c, iv)
|
e := cipher.NewCTR(c, iv)
|
||||||
e.XORKeyStream(plaintext, ciphertext)
|
|
||||||
plaintext = plaintext[:len(ciphertext)]
|
plaintext = plaintext[:len(ciphertext)]
|
||||||
|
e.XORKeyStream(plaintext, ciphertext)
|
||||||
|
|
||||||
return plaintext, nil
|
return plaintext, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user