mirror of
https://github.com/rclone/rclone.git
synced 2024-11-21 16:03:29 +01:00
config: fix size computation for allocation may overflow
This commit is contained in:
parent
37c12732f9
commit
e439121ab2
@ -10,6 +10,7 @@ import (
|
||||
"fmt"
|
||||
"io"
|
||||
"log"
|
||||
"math"
|
||||
)
|
||||
|
||||
// crypt internals
|
||||
@ -47,6 +48,9 @@ func crypt(out, in, iv []byte) error {
|
||||
// This is done by encrypting with AES-CTR
|
||||
func Obscure(x string) (string, error) {
|
||||
plaintext := []byte(x)
|
||||
if math.MaxInt32-aes.BlockSize < len(plaintext) {
|
||||
return "", fmt.Errorf("value too large")
|
||||
}
|
||||
ciphertext := make([]byte, aes.BlockSize+len(plaintext))
|
||||
iv := ciphertext[:aes.BlockSize]
|
||||
if _, err := io.ReadFull(cryptRand, iv); err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user