summaryrefslogtreecommitdiff
path: root/crypto/openssl/crypto/des/destest.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/crypto/des/destest.c')
-rw-r--r--crypto/openssl/crypto/des/destest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssl/crypto/des/destest.c b/crypto/openssl/crypto/des/destest.c
index 3983ac8e5f1a..e3e9d77f144e 100644
--- a/crypto/openssl/crypto/des/destest.c
+++ b/crypto/openssl/crypto/des/destest.c
@@ -439,8 +439,8 @@ int main(int argc, char *argv[])
memcpy(in,plain_data[i],8);
memset(out,0,8);
memset(outin,0,8);
- des_ecb2_encrypt(&in,&out,ks,ks2,DES_ENCRYPT);
- des_ecb2_encrypt(&out,&outin,ks,ks2,DES_DECRYPT);
+ des_ecb2_encrypt(in,out,ks,ks2,DES_ENCRYPT);
+ des_ecb2_encrypt(out,outin,ks,ks2,DES_DECRYPT);
if (memcmp(out,cipher_ecb2[i],8) != 0)
{