diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-24 16:03:11 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-05-24 16:03:11 +0000 |
commit | a9595b3062fc95ea14e704a742acb68c14c419b8 (patch) | |
tree | 14becf4e8d7bc08e82b3de05d1e0018710fb2122 /lib/libcrypto/des/des.h | |
parent | da20d11d15adbfeba35c14ae81c1345e63fc551f (diff) |
Remove the _shadow_ indirection, which is unnecessary in a world without
OPENSSL_EXPORT_VAR_AS_FUNCTION.
ok miod@
Diffstat (limited to 'lib/libcrypto/des/des.h')
-rw-r--r-- | lib/libcrypto/des/des.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libcrypto/des/des.h b/lib/libcrypto/des/des.h index de99c73f435..cff50b2ec58 100644 --- a/lib/libcrypto/des/des.h +++ b/lib/libcrypto/des/des.h @@ -107,11 +107,8 @@ typedef struct DES_ks #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \ DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n)) -extern int _shadow_DES_check_key; /* defaults to false */ -#define DES_check_key _shadow_DES_check_key - -extern int _shadow_DES_rw_mode; /* defaults to DES_PCBC_MODE */ -#define DES_rw_mode _shadow_DES_rw_mode +extern int DES_check_key; /* defaults to false */ +extern int DES_rw_mode; /* defaults to DES_PCBC_MODE */ const char *DES_options(void); void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output, |