Index: src/pkg/crypto/block/ctr.go |
=================================================================== |
--- a/src/pkg/crypto/block/ctr.go |
+++ b/src/pkg/crypto/block/ctr.go |
@@ -25,7 +25,7 @@ |
func newCTRStream(c Cipher, ctr []byte) *ctrStream { |
x := new(ctrStream) |
x.c = c |
- x.ctr = copy(ctr) |
+ x.ctr = dup(ctr) |
x.out = make([]byte, len(ctr)) |
return x |
} |