summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des/ecb_enc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/des/ecb_enc.c')
-rw-r--r--src/lib/libcrypto/des/ecb_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/des/ecb_enc.c b/src/lib/libcrypto/des/ecb_enc.c
index 8eaf3e9582..dac37de882 100644
--- a/src/lib/libcrypto/des/ecb_enc.c
+++ b/src/lib/libcrypto/des/ecb_enc.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ecb_enc.c,v 1.15 2014/07/09 11:10:50 bcook Exp $ */ 1/* $OpenBSD: ecb_enc.c,v 1.16 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 *
@@ -104,7 +104,7 @@ const char *DES_options(void)
104void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output, 104void DES_ecb_encrypt(const_DES_cblock *input, DES_cblock *output,
105 DES_key_schedule *ks, int enc) 105 DES_key_schedule *ks, int enc)
106 { 106 {
107 register DES_LONG l; 107 DES_LONG l;
108 DES_LONG ll[2]; 108 DES_LONG ll[2];
109 const unsigned char *in = &(*input)[0]; 109 const unsigned char *in = &(*input)[0];
110 unsigned char *out = &(*output)[0]; 110 unsigned char *out = &(*output)[0];