75 #ifdef POK_NEEDS_PROTOCOLS_DES
77 #ifndef __POK_PROTOCOLS_OPENSSL_DES_H__
78 #define __POK_PROTOCOLS_OPENSSL_DES_H__
92 typedef unsigned char DES_cblock[8];
93 typedef unsigned char const_DES_cblock[8];
108 #ifndef OPENSSL_DISABLE_OLD_DES_SUPPORT
109 # ifndef OPENSSL_ENABLE_OLD_DES_SUPPORT
110 # define OPENSSL_ENABLE_OLD_DES_SUPPORT
120 #define DES_KEY_SZ (sizeof(DES_cblock))
121 #define DES_SCHEDULE_SZ (sizeof(DES_key_schedule))
123 #define DES_ENCRYPT 1
124 #define DES_DECRYPT 0
126 #define DES_CBC_MODE 0
127 #define DES_PCBC_MODE 1
129 #define DES_ecb2_encrypt(i,o,k1,k2,e) \
130 DES_ecb3_encrypt((i),(o),(k1),(k2),(k1),(e))
132 #define DES_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
133 DES_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
135 #define DES_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
136 DES_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
138 #define DES_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \
139 DES_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
141 OPENSSL_DECLARE_GLOBAL(
int,DES_check_key);
142 #define DES_check_key OPENSSL_GLOBAL_REF(DES_check_key)
143 OPENSSL_DECLARE_GLOBAL(
int,DES_rw_mode);
144 #define DES_rw_mode OPENSSL_GLOBAL_REF(DES_rw_mode)
146 const char *DES_options(
void);
147 void DES_ecb3_encrypt(const_DES_cblock *input, DES_cblock *output,
150 DES_LONG DES_cbc_cksum(
const unsigned char *input,DES_cblock *output,
152 const_DES_cblock *ivec);
154 void DES_cbc_encrypt(
const unsigned char *input,
unsigned char *output,
157 void DES_ncbc_encrypt(
const unsigned char *input,
unsigned char *output,
160 void DES_xcbc_encrypt(
const unsigned char *input,
unsigned char *output,
162 const_DES_cblock *inw,const_DES_cblock *outw,
int enc);
163 void DES_cfb_encrypt(
const unsigned char *in,
unsigned char *out,
int numbits,
166 void DES_ecb_encrypt(const_DES_cblock *input,DES_cblock *output,
192 void DES_ede3_cbc_encrypt(
const unsigned char *input,
unsigned char *output,
196 void DES_ede3_cbcm_encrypt(
const unsigned char *in,
unsigned char *out,
200 DES_cblock *ivec1,DES_cblock *ivec2,
202 void DES_ede3_cfb64_encrypt(
const unsigned char *in,
unsigned char *out,
205 DES_cblock *ivec,
int *num,
int enc);
206 void DES_ede3_cfb_encrypt(
const unsigned char *in,
unsigned char *out,
209 DES_cblock *ivec,
int enc);
210 void DES_ede3_ofb64_encrypt(
const unsigned char *in,
unsigned char *out,
213 DES_cblock *ivec,
int *num);
215 void DES_xwhite_in2out(const_DES_cblock *DES_key,const_DES_cblock *in_white,
216 DES_cblock *out_white);
223 char *DES_fcrypt(
const char *buf,
const char *salt,
char *ret);
224 char *DES_crypt(
const char *buf,
const char *salt);
225 void DES_ofb_encrypt(
const unsigned char *in,
unsigned char *out,
int numbits,
227 void DES_pcbc_encrypt(
const unsigned char *input,
unsigned char *output,
230 DES_LONG DES_quad_cksum(
const unsigned char *input,DES_cblock output[],
231 long length,
int out_count,DES_cblock *seed);
232 int DES_random_key(DES_cblock *ret);
233 void DES_set_odd_parity(DES_cblock *key);
234 int DES_check_key_parity(const_DES_cblock *key);
235 int DES_is_weak_key(const_DES_cblock *key);
242 void DES_set_key_unchecked(const_DES_cblock *key,
DES_key_schedule *schedule);
243 void DES_string_to_key(
const char *str,DES_cblock *key);
244 void DES_string_to_2keys(
const char *str,DES_cblock *key1,DES_cblock *key2);
245 void DES_cfb64_encrypt(
const unsigned char *in,
unsigned char *out,
long length,
248 void DES_ofb64_encrypt(
const unsigned char *in,
unsigned char *out,
long length,
251 int DES_read_password(DES_cblock *key,
const char *prompt,
int verify);
252 int DES_read_2passwords(DES_cblock *key1, DES_cblock *key2,
const char *prompt,
255 #define DES_fixup_key_parity DES_set_odd_parity