projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e2458e
)
Fix typo in ideatest.c
author
Andreas Westfeld
<andreas.westfeld@freenet.de>
Fri, 27 Jun 2014 23:04:56 +0000
(
00:04
+0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Fri, 27 Jun 2014 23:07:02 +0000
(
00:07
+0100)
(cherry picked from commit
d1d4382dcb3fdcad4758ef7e7dd7b61dbf5abbfe
)
crypto/idea/ideatest.c
patch
|
blob
|
history
diff --git
a/crypto/idea/ideatest.c
b/crypto/idea/ideatest.c
index e6ffc7025e75db4ceb38852fea7c0a652bee671e..d509f8116ede4e9de8222d2aa5bec48c794af5d5 100644
(file)
--- a/
crypto/idea/ideatest.c
+++ b/
crypto/idea/ideatest.c
@@
-199,10
+199,10
@@
static int cfb64_test(unsigned char *cfb_cipher)
}
memcpy(cfb_tmp,cfb_iv,8);
n=0;
- idea_cfb64_encrypt(cfb_buf1,cfb_buf2,(long)1
7
,&eks,
+ idea_cfb64_encrypt(cfb_buf1,cfb_buf2,(long)1
3
,&eks,
cfb_tmp,&n,IDEA_DECRYPT);
- idea_cfb64_encrypt(&(cfb_buf1[1
7]),&(cfb_buf2[17
]),
- (long)CFB_TEST_SIZE-1
7,&d
ks,
+ idea_cfb64_encrypt(&(cfb_buf1[1
3]),&(cfb_buf2[13
]),
+ (long)CFB_TEST_SIZE-1
3,&e
ks,
cfb_tmp,&n,IDEA_DECRYPT);
if (memcmp(plain,cfb_buf2,CFB_TEST_SIZE) != 0)
{