diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-09-05 21:36:47 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-09-05 21:36:47 +0000 |
commit | 73d2e9943a13d2eee5c2cde2c418e6332a90f79c (patch) | |
tree | 4e464abc3f379329407a6ac59af395218c94e90a /regress | |
parent | b34a22c3080857dda092fcc722840c45cfcbf1d2 (diff) |
Fix copy-paste error
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libcrypto/rc4/rc4_test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/rc4/rc4_test.c b/regress/lib/libcrypto/rc4/rc4_test.c index f5750603824..a4094854a0f 100644 --- a/regress/lib/libcrypto/rc4/rc4_test.c +++ b/regress/lib/libcrypto/rc4/rc4_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rc4_test.c,v 1.2 2022/09/05 21:34:23 tb Exp $ */ +/* $OpenBSD: rc4_test.c,v 1.3 2022/09/05 21:36:46 tb Exp $ */ /* * Copyright (c) 2022 Joshua Sing <joshua@hypera.dev> * @@ -177,7 +177,7 @@ static const struct rc4_test rc4_tests[] = { 0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, }, .key_len = 8, - .len = 10, + .len = 512, .in = { 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, |