Explorar o código

salsa20: panic when len(out) < len(in) following cipher.Stream

Change-Id: I5c8d603cc3ec844b8d44e51b3138bcf16e95c7fc
Reviewed-on: https://go-review.googlesource.com/112235
Reviewed-by: Adam Langley <agl@golang.org>
Run-TryBot: Filippo Valsorda <filippo@golang.org>
Filippo Valsorda %!s(int64=7) %!d(string=hai) anos
pai
achega
1258d06b9d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      salsa20/salsa20.go

+ 1 - 1
salsa20/salsa20.go

@@ -32,7 +32,7 @@ import (
 // be either 8 or 24 bytes long.
 func XORKeyStream(out, in []byte, nonce []byte, key *[32]byte) {
 	if len(out) < len(in) {
-		in = in[:len(out)]
+		panic("salsa20: output smaller than input")
 	}
 
 	var subNonce [16]byte