e_des3.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /* crypto/evp/e_des3.c */
  2. /* Copyright (C) 1995-1998 Eric Young ([email protected])
  3. * All rights reserved.
  4. *
  5. * This package is an SSL implementation written
  6. * by Eric Young ([email protected]).
  7. * The implementation was written so as to conform with Netscapes SSL.
  8. *
  9. * This library is free for commercial and non-commercial use as long as
  10. * the following conditions are aheared to. The following conditions
  11. * apply to all code found in this distribution, be it the RC4, RSA,
  12. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  13. * included with this distribution is covered by the same copyright terms
  14. * except that the holder is Tim Hudson ([email protected]).
  15. *
  16. * Copyright remains Eric Young's, and as such any Copyright notices in
  17. * the code are not to be removed.
  18. * If this package is used in a product, Eric Young should be given attribution
  19. * as the author of the parts of the library used.
  20. * This can be in the form of a textual message at program startup or
  21. * in documentation (online or textual) provided with the package.
  22. *
  23. * Redistribution and use in source and binary forms, with or without
  24. * modification, are permitted provided that the following conditions
  25. * are met:
  26. * 1. Redistributions of source code must retain the copyright
  27. * notice, this list of conditions and the following disclaimer.
  28. * 2. Redistributions in binary form must reproduce the above copyright
  29. * notice, this list of conditions and the following disclaimer in the
  30. * documentation and/or other materials provided with the distribution.
  31. * 3. All advertising materials mentioning features or use of this software
  32. * must display the following acknowledgement:
  33. * "This product includes cryptographic software written by
  34. * Eric Young ([email protected])"
  35. * The word 'cryptographic' can be left out if the rouines from the library
  36. * being used are not cryptographic related :-).
  37. * 4. If you include any Windows specific code (or a derivative thereof) from
  38. * the apps directory (application code) you must include an acknowledgement:
  39. * "This product includes software written by Tim Hudson ([email protected])"
  40. *
  41. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  42. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  43. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  44. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  45. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  46. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  47. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  49. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  50. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  51. * SUCH DAMAGE.
  52. *
  53. * The licence and distribution terms for any publically available version or
  54. * derivative of this code cannot be changed. i.e. this code cannot simply be
  55. * copied and put under another distribution licence
  56. * [including the GNU Public Licence.]
  57. */
  58. #include <stdio.h>
  59. #include "cryptlib.h"
  60. #ifndef OPENSSL_NO_DES
  61. # include <openssl/evp.h>
  62. # include <openssl/objects.h>
  63. # include "evp_locl.h"
  64. # include <openssl/des.h>
  65. # include <openssl/rand.h>
  66. # ifndef OPENSSL_FIPS
  67. static int des_ede_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
  68. const unsigned char *iv, int enc);
  69. static int des_ede3_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
  70. const unsigned char *iv, int enc);
  71. static int des3_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
  72. typedef struct {
  73. DES_key_schedule ks1; /* key schedule */
  74. DES_key_schedule ks2; /* key schedule (for ede) */
  75. DES_key_schedule ks3; /* key schedule (for ede3) */
  76. } DES_EDE_KEY;
  77. # define data(ctx) ((DES_EDE_KEY *)(ctx)->cipher_data)
  78. /*
  79. * Because of various casts and different args can't use
  80. * IMPLEMENT_BLOCK_CIPHER
  81. */
  82. static int des_ede_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  83. const unsigned char *in, size_t inl)
  84. {
  85. BLOCK_CIPHER_ecb_loop()
  86. DES_ecb3_encrypt((const_DES_cblock *)(in + i),
  87. (DES_cblock *)(out + i),
  88. &data(ctx)->ks1, &data(ctx)->ks2,
  89. &data(ctx)->ks3, ctx->encrypt);
  90. return 1;
  91. }
  92. static int des_ede_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  93. const unsigned char *in, size_t inl)
  94. {
  95. while (inl >= EVP_MAXCHUNK) {
  96. DES_ede3_ofb64_encrypt(in, out, (long)EVP_MAXCHUNK,
  97. &data(ctx)->ks1, &data(ctx)->ks2,
  98. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  99. &ctx->num);
  100. inl -= EVP_MAXCHUNK;
  101. in += EVP_MAXCHUNK;
  102. out += EVP_MAXCHUNK;
  103. }
  104. if (inl)
  105. DES_ede3_ofb64_encrypt(in, out, (long)inl,
  106. &data(ctx)->ks1, &data(ctx)->ks2,
  107. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  108. &ctx->num);
  109. return 1;
  110. }
  111. static int des_ede_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  112. const unsigned char *in, size_t inl)
  113. {
  114. # ifdef KSSL_DEBUG
  115. {
  116. int i;
  117. fprintf(stderr, "des_ede_cbc_cipher(ctx=%p, buflen=%d)\n", ctx,
  118. ctx->buf_len);
  119. fprintf(stderr, "\t iv= ");
  120. for (i = 0; i < 8; i++)
  121. fprintf(stderr, "%02X", ctx->iv[i]);
  122. fprintf(stderr, "\n");
  123. }
  124. # endif /* KSSL_DEBUG */
  125. while (inl >= EVP_MAXCHUNK) {
  126. DES_ede3_cbc_encrypt(in, out, (long)EVP_MAXCHUNK,
  127. &data(ctx)->ks1, &data(ctx)->ks2,
  128. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  129. ctx->encrypt);
  130. inl -= EVP_MAXCHUNK;
  131. in += EVP_MAXCHUNK;
  132. out += EVP_MAXCHUNK;
  133. }
  134. if (inl)
  135. DES_ede3_cbc_encrypt(in, out, (long)inl,
  136. &data(ctx)->ks1, &data(ctx)->ks2,
  137. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  138. ctx->encrypt);
  139. return 1;
  140. }
  141. static int des_ede_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  142. const unsigned char *in, size_t inl)
  143. {
  144. while (inl >= EVP_MAXCHUNK) {
  145. DES_ede3_cfb64_encrypt(in, out, (long)EVP_MAXCHUNK,
  146. &data(ctx)->ks1, &data(ctx)->ks2,
  147. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  148. &ctx->num, ctx->encrypt);
  149. inl -= EVP_MAXCHUNK;
  150. in += EVP_MAXCHUNK;
  151. out += EVP_MAXCHUNK;
  152. }
  153. if (inl)
  154. DES_ede3_cfb64_encrypt(in, out, (long)inl,
  155. &data(ctx)->ks1, &data(ctx)->ks2,
  156. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  157. &ctx->num, ctx->encrypt);
  158. return 1;
  159. }
  160. /*
  161. * Although we have a CFB-r implementation for 3-DES, it doesn't pack the
  162. * right way, so wrap it here
  163. */
  164. static int des_ede3_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  165. const unsigned char *in, size_t inl)
  166. {
  167. size_t n;
  168. unsigned char c[1], d[1];
  169. for (n = 0; n < inl; ++n) {
  170. c[0] = (in[n / 8] & (1 << (7 - n % 8))) ? 0x80 : 0;
  171. DES_ede3_cfb_encrypt(c, d, 1, 1,
  172. &data(ctx)->ks1, &data(ctx)->ks2,
  173. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  174. ctx->encrypt);
  175. out[n / 8] = (out[n / 8] & ~(0x80 >> (unsigned int)(n % 8)))
  176. | ((d[0] & 0x80) >> (unsigned int)(n % 8));
  177. }
  178. return 1;
  179. }
  180. static int des_ede3_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
  181. const unsigned char *in, size_t inl)
  182. {
  183. while (inl >= EVP_MAXCHUNK) {
  184. DES_ede3_cfb_encrypt(in, out, 8, (long)EVP_MAXCHUNK,
  185. &data(ctx)->ks1, &data(ctx)->ks2,
  186. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  187. ctx->encrypt);
  188. inl -= EVP_MAXCHUNK;
  189. in += EVP_MAXCHUNK;
  190. out += EVP_MAXCHUNK;
  191. }
  192. if (inl)
  193. DES_ede3_cfb_encrypt(in, out, 8, (long)inl,
  194. &data(ctx)->ks1, &data(ctx)->ks2,
  195. &data(ctx)->ks3, (DES_cblock *)ctx->iv,
  196. ctx->encrypt);
  197. return 1;
  198. }
  199. BLOCK_CIPHER_defs(des_ede, DES_EDE_KEY, NID_des_ede, 8, 16, 8, 64,
  200. EVP_CIPH_RAND_KEY, des_ede_init_key, NULL,
  201. EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des3_ctrl)
  202. # define des_ede3_cfb64_cipher des_ede_cfb64_cipher
  203. # define des_ede3_ofb_cipher des_ede_ofb_cipher
  204. # define des_ede3_cbc_cipher des_ede_cbc_cipher
  205. # define des_ede3_ecb_cipher des_ede_ecb_cipher
  206. BLOCK_CIPHER_defs(des_ede3, DES_EDE_KEY, NID_des_ede3, 8, 24, 8, 64,
  207. EVP_CIPH_RAND_KEY, des_ede3_init_key, NULL,
  208. EVP_CIPHER_set_asn1_iv, EVP_CIPHER_get_asn1_iv, des3_ctrl)
  209. BLOCK_CIPHER_def_cfb(des_ede3, DES_EDE_KEY, NID_des_ede3, 24, 8, 1,
  210. EVP_CIPH_RAND_KEY, des_ede3_init_key, NULL,
  211. EVP_CIPHER_set_asn1_iv,
  212. EVP_CIPHER_get_asn1_iv, des3_ctrl)
  213. BLOCK_CIPHER_def_cfb(des_ede3, DES_EDE_KEY, NID_des_ede3, 24, 8, 8,
  214. EVP_CIPH_RAND_KEY, des_ede3_init_key, NULL,
  215. EVP_CIPHER_set_asn1_iv,
  216. EVP_CIPHER_get_asn1_iv, des3_ctrl)
  217. static int des_ede_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
  218. const unsigned char *iv, int enc)
  219. {
  220. DES_cblock *deskey = (DES_cblock *)key;
  221. # ifdef EVP_CHECK_DES_KEY
  222. if (DES_set_key_checked(&deskey[0], &data(ctx)->ks1)
  223. ! !DES_set_key_checked(&deskey[1], &data(ctx)->ks2))
  224. return 0;
  225. # else
  226. DES_set_key_unchecked(&deskey[0], &data(ctx)->ks1);
  227. DES_set_key_unchecked(&deskey[1], &data(ctx)->ks2);
  228. # endif
  229. memcpy(&data(ctx)->ks3, &data(ctx)->ks1, sizeof(data(ctx)->ks1));
  230. return 1;
  231. }
  232. static int des_ede3_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
  233. const unsigned char *iv, int enc)
  234. {
  235. DES_cblock *deskey = (DES_cblock *)key;
  236. # ifdef KSSL_DEBUG
  237. {
  238. int i;
  239. fprintf(stderr, "des_ede3_init_key(ctx=%p)\n", ctx);
  240. fprintf(stderr, "\tKEY= ");
  241. for (i = 0; i < 24; i++)
  242. fprintf(stderr, "%02X", key[i]);
  243. fprintf(stderr, "\n");
  244. if (iv) {
  245. fprintf(stderr, "\t IV= ");
  246. for (i = 0; i < 8; i++)
  247. fprintf(stderr, "%02X", iv[i]);
  248. fprintf(stderr, "\n");
  249. }
  250. }
  251. # endif /* KSSL_DEBUG */
  252. # ifdef EVP_CHECK_DES_KEY
  253. if (DES_set_key_checked(&deskey[0], &data(ctx)->ks1)
  254. || DES_set_key_checked(&deskey[1], &data(ctx)->ks2)
  255. || DES_set_key_checked(&deskey[2], &data(ctx)->ks3))
  256. return 0;
  257. # else
  258. DES_set_key_unchecked(&deskey[0], &data(ctx)->ks1);
  259. DES_set_key_unchecked(&deskey[1], &data(ctx)->ks2);
  260. DES_set_key_unchecked(&deskey[2], &data(ctx)->ks3);
  261. # endif
  262. return 1;
  263. }
  264. static int des3_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr)
  265. {
  266. DES_cblock *deskey = ptr;
  267. switch (type) {
  268. case EVP_CTRL_RAND_KEY:
  269. if (RAND_bytes(ptr, c->key_len) <= 0)
  270. return 0;
  271. DES_set_odd_parity(deskey);
  272. if (c->key_len >= 16)
  273. DES_set_odd_parity(deskey + 1);
  274. if (c->key_len >= 24)
  275. DES_set_odd_parity(deskey + 2);
  276. return 1;
  277. default:
  278. return -1;
  279. }
  280. }
  281. const EVP_CIPHER *EVP_des_ede(void)
  282. {
  283. return &des_ede_ecb;
  284. }
  285. const EVP_CIPHER *EVP_des_ede3(void)
  286. {
  287. return &des_ede3_ecb;
  288. }
  289. # endif
  290. #endif