internal.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  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. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.] */
  56. #ifndef OPENSSL_HEADER_DES_INTERNAL_H
  57. #define OPENSSL_HEADER_DES_INTERNAL_H
  58. #include <openssl/base.h>
  59. #include "../../internal.h"
  60. #if defined(__cplusplus)
  61. extern "C" {
  62. #endif
  63. #define c2l(c, l) \
  64. do { \
  65. (l) = ((uint32_t)(*((c)++))); \
  66. (l) |= ((uint32_t)(*((c)++))) << 8L; \
  67. (l) |= ((uint32_t)(*((c)++))) << 16L; \
  68. (l) |= ((uint32_t)(*((c)++))) << 24L; \
  69. } while (0)
  70. #define l2c(l, c) \
  71. do { \
  72. *((c)++) = (unsigned char)(((l)) & 0xff); \
  73. *((c)++) = (unsigned char)(((l) >> 8L) & 0xff); \
  74. *((c)++) = (unsigned char)(((l) >> 16L) & 0xff); \
  75. *((c)++) = (unsigned char)(((l) >> 24L) & 0xff); \
  76. } while (0)
  77. // NOTE - c is not incremented as per c2l
  78. #define c2ln(c, l1, l2, n) \
  79. do { \
  80. (c) += (n); \
  81. (l1) = (l2) = 0; \
  82. switch (n) { \
  83. case 8: \
  84. (l2) = ((uint32_t)(*(--(c)))) << 24L; \
  85. OPENSSL_FALLTHROUGH; \
  86. case 7: \
  87. (l2) |= ((uint32_t)(*(--(c)))) << 16L; \
  88. OPENSSL_FALLTHROUGH; \
  89. case 6: \
  90. (l2) |= ((uint32_t)(*(--(c)))) << 8L; \
  91. OPENSSL_FALLTHROUGH; \
  92. case 5: \
  93. (l2) |= ((uint32_t)(*(--(c)))); \
  94. OPENSSL_FALLTHROUGH; \
  95. case 4: \
  96. (l1) = ((uint32_t)(*(--(c)))) << 24L; \
  97. OPENSSL_FALLTHROUGH; \
  98. case 3: \
  99. (l1) |= ((uint32_t)(*(--(c)))) << 16L; \
  100. OPENSSL_FALLTHROUGH; \
  101. case 2: \
  102. (l1) |= ((uint32_t)(*(--(c)))) << 8L; \
  103. OPENSSL_FALLTHROUGH; \
  104. case 1: \
  105. (l1) |= ((uint32_t)(*(--(c)))); \
  106. } \
  107. } while (0)
  108. // NOTE - c is not incremented as per l2c
  109. #define l2cn(l1, l2, c, n) \
  110. do { \
  111. (c) += (n); \
  112. switch (n) { \
  113. case 8: \
  114. *(--(c)) = (unsigned char)(((l2) >> 24L) & 0xff); \
  115. OPENSSL_FALLTHROUGH; \
  116. case 7: \
  117. *(--(c)) = (unsigned char)(((l2) >> 16L) & 0xff); \
  118. OPENSSL_FALLTHROUGH; \
  119. case 6: \
  120. *(--(c)) = (unsigned char)(((l2) >> 8L) & 0xff); \
  121. OPENSSL_FALLTHROUGH; \
  122. case 5: \
  123. *(--(c)) = (unsigned char)(((l2)) & 0xff); \
  124. OPENSSL_FALLTHROUGH; \
  125. case 4: \
  126. *(--(c)) = (unsigned char)(((l1) >> 24L) & 0xff); \
  127. OPENSSL_FALLTHROUGH; \
  128. case 3: \
  129. *(--(c)) = (unsigned char)(((l1) >> 16L) & 0xff); \
  130. OPENSSL_FALLTHROUGH; \
  131. case 2: \
  132. *(--(c)) = (unsigned char)(((l1) >> 8L) & 0xff); \
  133. OPENSSL_FALLTHROUGH; \
  134. case 1: \
  135. *(--(c)) = (unsigned char)(((l1)) & 0xff); \
  136. } \
  137. } while (0)
  138. /* IP and FP
  139. * The problem is more of a geometric problem that random bit fiddling.
  140. 0 1 2 3 4 5 6 7 62 54 46 38 30 22 14 6
  141. 8 9 10 11 12 13 14 15 60 52 44 36 28 20 12 4
  142. 16 17 18 19 20 21 22 23 58 50 42 34 26 18 10 2
  143. 24 25 26 27 28 29 30 31 to 56 48 40 32 24 16 8 0
  144. 32 33 34 35 36 37 38 39 63 55 47 39 31 23 15 7
  145. 40 41 42 43 44 45 46 47 61 53 45 37 29 21 13 5
  146. 48 49 50 51 52 53 54 55 59 51 43 35 27 19 11 3
  147. 56 57 58 59 60 61 62 63 57 49 41 33 25 17 9 1
  148. The output has been subject to swaps of the form
  149. 0 1 -> 3 1 but the odd and even bits have been put into
  150. 2 3 2 0
  151. different words. The main trick is to remember that
  152. t=((l>>size)^r)&(mask);
  153. r^=t;
  154. l^=(t<<size);
  155. can be used to swap and move bits between words.
  156. So l = 0 1 2 3 r = 16 17 18 19
  157. 4 5 6 7 20 21 22 23
  158. 8 9 10 11 24 25 26 27
  159. 12 13 14 15 28 29 30 31
  160. becomes (for size == 2 and mask == 0x3333)
  161. t = 2^16 3^17 -- -- l = 0 1 16 17 r = 2 3 18 19
  162. 6^20 7^21 -- -- 4 5 20 21 6 7 22 23
  163. 10^24 11^25 -- -- 8 9 24 25 10 11 24 25
  164. 14^28 15^29 -- -- 12 13 28 29 14 15 28 29
  165. Thanks for hints from Richard Outerbridge - he told me IP&FP
  166. could be done in 15 xor, 10 shifts and 5 ands.
  167. When I finally started to think of the problem in 2D
  168. I first got ~42 operations without xors. When I remembered
  169. how to use xors :-) I got it to its final state.
  170. */
  171. #define PERM_OP(a, b, t, n, m) \
  172. do { \
  173. (t) = ((((a) >> (n)) ^ (b)) & (m)); \
  174. (b) ^= (t); \
  175. (a) ^= ((t) << (n)); \
  176. } while (0)
  177. #define IP(l, r) \
  178. do { \
  179. uint32_t tt; \
  180. PERM_OP(r, l, tt, 4, 0x0f0f0f0fL); \
  181. PERM_OP(l, r, tt, 16, 0x0000ffffL); \
  182. PERM_OP(r, l, tt, 2, 0x33333333L); \
  183. PERM_OP(l, r, tt, 8, 0x00ff00ffL); \
  184. PERM_OP(r, l, tt, 1, 0x55555555L); \
  185. } while (0)
  186. #define FP(l, r) \
  187. do { \
  188. uint32_t tt; \
  189. PERM_OP(l, r, tt, 1, 0x55555555L); \
  190. PERM_OP(r, l, tt, 8, 0x00ff00ffL); \
  191. PERM_OP(l, r, tt, 2, 0x33333333L); \
  192. PERM_OP(r, l, tt, 16, 0x0000ffffL); \
  193. PERM_OP(l, r, tt, 4, 0x0f0f0f0fL); \
  194. } while (0)
  195. #define LOAD_DATA(ks, R, S, u, t, E0, E1) \
  196. do { \
  197. (u) = (R) ^ (ks)->subkeys[S][0]; \
  198. (t) = (R) ^ (ks)->subkeys[S][1]; \
  199. } while (0)
  200. #define D_ENCRYPT(ks, LL, R, S) \
  201. do { \
  202. LOAD_DATA(ks, R, S, u, t, E0, E1); \
  203. t = ROTATE(t, 4); \
  204. (LL) ^= \
  205. DES_SPtrans[0][(u >> 2L) & 0x3f] ^ DES_SPtrans[2][(u >> 10L) & 0x3f] ^ \
  206. DES_SPtrans[4][(u >> 18L) & 0x3f] ^ \
  207. DES_SPtrans[6][(u >> 26L) & 0x3f] ^ DES_SPtrans[1][(t >> 2L) & 0x3f] ^ \
  208. DES_SPtrans[3][(t >> 10L) & 0x3f] ^ \
  209. DES_SPtrans[5][(t >> 18L) & 0x3f] ^ DES_SPtrans[7][(t >> 26L) & 0x3f]; \
  210. } while (0)
  211. #define ITERATIONS 16
  212. #define HALF_ITERATIONS 8
  213. #define ROTATE(a, n) (((a) >> (n)) + ((a) << (32 - (n))))
  214. #if defined(__cplusplus)
  215. } // extern C
  216. #endif
  217. #endif // OPENSSL_HEADER_DES_INTERNAL_H