des_old.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. /* crypto/des/des_old.c -*- mode:C; c-file-style: "eay" -*- */
  2. /* WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
  3. *
  4. * The function names in here are deprecated and are only present to
  5. * provide an interface compatible with libdes. OpenSSL now provides
  6. * functions where "des_" has been replaced with "DES_" in the names,
  7. * to make it possible to make incompatible changes that are needed
  8. * for C type security and other stuff.
  9. *
  10. * Please consider starting to use the DES_ functions rather than the
  11. * des_ ones. The des_ functions will dissapear completely before
  12. * OpenSSL 1.0!
  13. *
  14. * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
  15. */
  16. /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL
  17. * project 2001.
  18. */
  19. /* ====================================================================
  20. * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. *
  26. * 1. Redistributions of source code must retain the above copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. *
  29. * 2. Redistributions in binary form must reproduce the above copyright
  30. * notice, this list of conditions and the following disclaimer in
  31. * the documentation and/or other materials provided with the
  32. * distribution.
  33. *
  34. * 3. All advertising materials mentioning features or use of this
  35. * software must display the following acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  38. *
  39. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  40. * endorse or promote products derived from this software without
  41. * prior written permission. For written permission, please contact
  42. * openssl-core@openssl.org.
  43. *
  44. * 5. Products derived from this software may not be called "OpenSSL"
  45. * nor may "OpenSSL" appear in their names without prior written
  46. * permission of the OpenSSL Project.
  47. *
  48. * 6. Redistributions of any form whatsoever must retain the following
  49. * acknowledgment:
  50. * "This product includes software developed by the OpenSSL Project
  51. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  52. *
  53. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  54. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  55. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  56. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  57. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  58. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  59. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  60. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  61. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  62. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  63. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  64. * OF THE POSSIBILITY OF SUCH DAMAGE.
  65. * ====================================================================
  66. *
  67. * This product includes cryptographic software written by Eric Young
  68. * (eay@cryptsoft.com). This product includes software written by Tim
  69. * Hudson (tjh@cryptsoft.com).
  70. *
  71. */
  72. #define OPENSSL_DES_LIBDES_COMPATIBILITY
  73. #include <openssl/crypto.h>
  74. #include <openssl/des.h>
  75. #include <openssl/rand.h>
  76. const char *_ossl_old_des_options(void)
  77. {
  78. return DES_options();
  79. }
  80. void _ossl_old_des_ecb3_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,
  81. des_key_schedule ks1,des_key_schedule ks2,
  82. des_key_schedule ks3, int enc)
  83. {
  84. DES_ecb3_encrypt((const_DES_cblock *)input, output,
  85. (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
  86. (DES_key_schedule *)ks3, enc);
  87. }
  88. DES_LONG _ossl_old_des_cbc_cksum(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,
  89. long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec)
  90. {
  91. return DES_cbc_cksum((unsigned char *)input, output, length,
  92. (DES_key_schedule *)schedule, ivec);
  93. }
  94. void _ossl_old_des_cbc_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,long length,
  95. des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
  96. {
  97. DES_cbc_encrypt((unsigned char *)input, (unsigned char *)output,
  98. length, (DES_key_schedule *)schedule, ivec, enc);
  99. }
  100. void _ossl_old_des_ncbc_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,long length,
  101. des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
  102. {
  103. DES_ncbc_encrypt((unsigned char *)input, (unsigned char *)output,
  104. length, (DES_key_schedule *)schedule, ivec, enc);
  105. }
  106. void _ossl_old_des_xcbc_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,long length,
  107. des_key_schedule schedule,_ossl_old_des_cblock *ivec,
  108. _ossl_old_des_cblock *inw,_ossl_old_des_cblock *outw,int enc)
  109. {
  110. DES_xcbc_encrypt((unsigned char *)input, (unsigned char *)output,
  111. length, (DES_key_schedule *)schedule, ivec, inw, outw, enc);
  112. }
  113. void _ossl_old_des_cfb_encrypt(unsigned char *in,unsigned char *out,int numbits,
  114. long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
  115. {
  116. DES_cfb_encrypt(in, out, numbits, length,
  117. (DES_key_schedule *)schedule, ivec, enc);
  118. }
  119. void _ossl_old_des_ecb_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,
  120. des_key_schedule ks,int enc)
  121. {
  122. DES_ecb_encrypt(input, output, (DES_key_schedule *)ks, enc);
  123. }
  124. void _ossl_old_des_encrypt(DES_LONG *data,des_key_schedule ks, int enc)
  125. {
  126. DES_encrypt1(data, (DES_key_schedule *)ks, enc);
  127. }
  128. void _ossl_old_des_encrypt2(DES_LONG *data,des_key_schedule ks, int enc)
  129. {
  130. DES_encrypt2(data, (DES_key_schedule *)ks, enc);
  131. }
  132. void _ossl_old_des_encrypt3(DES_LONG *data, des_key_schedule ks1,
  133. des_key_schedule ks2, des_key_schedule ks3)
  134. {
  135. DES_encrypt3(data, (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
  136. (DES_key_schedule *)ks3);
  137. }
  138. void _ossl_old_des_decrypt3(DES_LONG *data, des_key_schedule ks1,
  139. des_key_schedule ks2, des_key_schedule ks3)
  140. {
  141. DES_decrypt3(data, (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
  142. (DES_key_schedule *)ks3);
  143. }
  144. void _ossl_old_des_ede3_cbc_encrypt(_ossl_old_des_cblock *input, _ossl_old_des_cblock *output,
  145. long length, des_key_schedule ks1, des_key_schedule ks2,
  146. des_key_schedule ks3, _ossl_old_des_cblock *ivec, int enc)
  147. {
  148. DES_ede3_cbc_encrypt((unsigned char *)input, (unsigned char *)output,
  149. length, (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
  150. (DES_key_schedule *)ks3, ivec, enc);
  151. }
  152. void _ossl_old_des_ede3_cfb64_encrypt(unsigned char *in, unsigned char *out,
  153. long length, des_key_schedule ks1, des_key_schedule ks2,
  154. des_key_schedule ks3, _ossl_old_des_cblock *ivec, int *num, int enc)
  155. {
  156. DES_ede3_cfb64_encrypt(in, out, length,
  157. (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
  158. (DES_key_schedule *)ks3, ivec, num, enc);
  159. }
  160. void _ossl_old_des_ede3_ofb64_encrypt(unsigned char *in, unsigned char *out,
  161. long length, des_key_schedule ks1, des_key_schedule ks2,
  162. des_key_schedule ks3, _ossl_old_des_cblock *ivec, int *num)
  163. {
  164. DES_ede3_ofb64_encrypt(in, out, length,
  165. (DES_key_schedule *)ks1, (DES_key_schedule *)ks2,
  166. (DES_key_schedule *)ks3, ivec, num);
  167. }
  168. #if 0 /* broken code, preserved just in case anyone specifically looks for this */
  169. void _ossl_old_des_xwhite_in2out(_ossl_old_des_cblock (*des_key), _ossl_old_des_cblock (*in_white),
  170. _ossl_old_des_cblock (*out_white))
  171. {
  172. DES_xwhite_in2out(des_key, in_white, out_white);
  173. }
  174. #endif
  175. int _ossl_old_des_enc_read(int fd,char *buf,int len,des_key_schedule sched,
  176. _ossl_old_des_cblock *iv)
  177. {
  178. return DES_enc_read(fd, buf, len, (DES_key_schedule *)sched, iv);
  179. }
  180. int _ossl_old_des_enc_write(int fd,char *buf,int len,des_key_schedule sched,
  181. _ossl_old_des_cblock *iv)
  182. {
  183. return DES_enc_write(fd, buf, len, (DES_key_schedule *)sched, iv);
  184. }
  185. char *_ossl_old_des_fcrypt(const char *buf,const char *salt, char *ret)
  186. {
  187. return DES_fcrypt(buf, salt, ret);
  188. }
  189. char *_ossl_old_des_crypt(const char *buf,const char *salt)
  190. {
  191. return DES_crypt(buf, salt);
  192. }
  193. char *_ossl_old_crypt(const char *buf,const char *salt)
  194. {
  195. return DES_crypt(buf, salt);
  196. }
  197. void _ossl_old_des_ofb_encrypt(unsigned char *in,unsigned char *out,
  198. int numbits,long length,des_key_schedule schedule,_ossl_old_des_cblock *ivec)
  199. {
  200. DES_ofb_encrypt(in, out, numbits, length, (DES_key_schedule *)schedule,
  201. ivec);
  202. }
  203. void _ossl_old_des_pcbc_encrypt(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,long length,
  204. des_key_schedule schedule,_ossl_old_des_cblock *ivec,int enc)
  205. {
  206. DES_pcbc_encrypt((unsigned char *)input, (unsigned char *)output,
  207. length, (DES_key_schedule *)schedule, ivec, enc);
  208. }
  209. DES_LONG _ossl_old_des_quad_cksum(_ossl_old_des_cblock *input,_ossl_old_des_cblock *output,
  210. long length,int out_count,_ossl_old_des_cblock *seed)
  211. {
  212. return DES_quad_cksum((unsigned char *)input, output, length,
  213. out_count, seed);
  214. }
  215. void _ossl_old_des_random_seed(_ossl_old_des_cblock key)
  216. {
  217. RAND_seed(key, sizeof(_ossl_old_des_cblock));
  218. }
  219. void _ossl_old_des_random_key(_ossl_old_des_cblock ret)
  220. {
  221. DES_random_key((DES_cblock *)ret);
  222. }
  223. int _ossl_old_des_read_password(_ossl_old_des_cblock *key, const char *prompt,
  224. int verify)
  225. {
  226. return DES_read_password(key, prompt, verify);
  227. }
  228. int _ossl_old_des_read_2passwords(_ossl_old_des_cblock *key1, _ossl_old_des_cblock *key2,
  229. const char *prompt, int verify)
  230. {
  231. return DES_read_2passwords(key1, key2, prompt, verify);
  232. }
  233. void _ossl_old_des_set_odd_parity(_ossl_old_des_cblock *key)
  234. {
  235. DES_set_odd_parity(key);
  236. }
  237. int _ossl_old_des_is_weak_key(_ossl_old_des_cblock *key)
  238. {
  239. return DES_is_weak_key(key);
  240. }
  241. int _ossl_old_des_set_key(_ossl_old_des_cblock *key,des_key_schedule schedule)
  242. {
  243. return DES_set_key(key, (DES_key_schedule *)schedule);
  244. }
  245. int _ossl_old_des_key_sched(_ossl_old_des_cblock *key,des_key_schedule schedule)
  246. {
  247. return DES_key_sched(key, (DES_key_schedule *)schedule);
  248. }
  249. void _ossl_old_des_string_to_key(char *str,_ossl_old_des_cblock *key)
  250. {
  251. DES_string_to_key(str, key);
  252. }
  253. void _ossl_old_des_string_to_2keys(char *str,_ossl_old_des_cblock *key1,_ossl_old_des_cblock *key2)
  254. {
  255. DES_string_to_2keys(str, key1, key2);
  256. }
  257. void _ossl_old_des_cfb64_encrypt(unsigned char *in, unsigned char *out, long length,
  258. des_key_schedule schedule, _ossl_old_des_cblock *ivec, int *num, int enc)
  259. {
  260. DES_cfb64_encrypt(in, out, length, (DES_key_schedule *)schedule,
  261. ivec, num, enc);
  262. }
  263. void _ossl_old_des_ofb64_encrypt(unsigned char *in, unsigned char *out, long length,
  264. des_key_schedule schedule, _ossl_old_des_cblock *ivec, int *num)
  265. {
  266. DES_ofb64_encrypt(in, out, length, (DES_key_schedule *)schedule,
  267. ivec, num);
  268. }