summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/cbc_cksm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/cbc_cksm.c')
-rw-r--r--src/lib/libcrypto/des/cbc_cksm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/des/cbc_cksm.c b/src/lib/libcrypto/des/cbc_cksm.c
index c1fc81af57..20553ef09f 100644
--- a/src/lib/libcrypto/des/cbc_cksm.c
+++ b/src/lib/libcrypto/des/cbc_cksm.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: cbc_cksm.c,v 1.6 2014/06/12 15:49:28 deraadt Exp $ */ 1/* $OpenBSD: cbc_cksm.c,v 1.7 2014/10/28 07:35:58 jsg Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -62,8 +62,8 @@ DES_LONG DES_cbc_cksum(const unsigned char *in, DES_cblock *output,
62 long length, DES_key_schedule *schedule, 62 long length, DES_key_schedule *schedule,
63 const_DES_cblock *ivec) 63 const_DES_cblock *ivec)
64 { 64 {
65 register DES_LONG tout0,tout1,tin0,tin1; 65 DES_LONG tout0,tout1,tin0,tin1;
66 register long l=length; 66 long l=length;
67 DES_LONG tin[2]; 67 DES_LONG tin[2];
68 unsigned char *out = &(*output)[0]; 68 unsigned char *out = &(*output)[0];
69 const unsigned char *iv = &(*ivec)[0]; 69 const unsigned char *iv = &(*ivec)[0];