25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

225 satır
6.7 KiB

  1. /* ====================================================================
  2. * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in
  13. * the documentation and/or other materials provided with the
  14. * distribution.
  15. *
  16. * 3. All advertising materials mentioning features or use of this
  17. * software must display the following acknowledgment:
  18. * "This product includes software developed by the OpenSSL Project
  19. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  20. *
  21. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  22. * endorse or promote products derived from this software without
  23. * prior written permission. For written permission, please contact
  24. * openssl-core@openssl.org.
  25. *
  26. * 5. Products derived from this software may not be called "OpenSSL"
  27. * nor may "OpenSSL" appear in their names without prior written
  28. * permission of the OpenSSL Project.
  29. *
  30. * 6. Redistributions of any form whatsoever must retain the following
  31. * acknowledgment:
  32. * "This product includes software developed by the OpenSSL Project
  33. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  34. *
  35. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  36. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  37. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  38. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  39. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  41. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  42. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  43. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  44. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  45. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  46. * OF THE POSSIBILITY OF SUCH DAMAGE.
  47. * ==================================================================== */
  48. #include <openssl/modes.h>
  49. #include <assert.h>
  50. #include <string.h>
  51. #include "internal.h"
  52. /* NOTE: the IV/counter CTR mode is big-endian. The code itself
  53. * is endian-neutral. */
  54. /* increment counter (128-bit int) by 1 */
  55. static void ctr128_inc(uint8_t *counter) {
  56. uint32_t n = 16;
  57. uint8_t c;
  58. do {
  59. --n;
  60. c = counter[n];
  61. ++c;
  62. counter[n] = c;
  63. if (c) {
  64. return;
  65. }
  66. } while (n);
  67. }
  68. /* The input encrypted as though 128bit counter mode is being used. The extra
  69. * state information to record how much of the 128bit block we have used is
  70. * contained in *num, and the encrypted counter is kept in ecount_buf. Both
  71. * *num and ecount_buf must be initialised with zeros before the first call to
  72. * CRYPTO_ctr128_encrypt().
  73. *
  74. * This algorithm assumes that the counter is in the x lower bits of the IV
  75. * (ivec), and that the application has full control over overflow and the rest
  76. * of the IV. This implementation takes NO responsibility for checking that
  77. * the counter doesn't overflow into the rest of the IV when incremented. */
  78. void CRYPTO_ctr128_encrypt(const uint8_t *in, uint8_t *out, size_t len,
  79. const void *key, uint8_t ivec[16],
  80. uint8_t ecount_buf[16], unsigned int *num,
  81. block128_f block) {
  82. unsigned int n;
  83. assert(key && ecount_buf && num);
  84. assert(len == 0 || (in && out));
  85. assert(*num < 16);
  86. assert((16 % sizeof(size_t)) == 0);
  87. n = *num;
  88. while (n && len) {
  89. *(out++) = *(in++) ^ ecount_buf[n];
  90. --len;
  91. n = (n + 1) % 16;
  92. }
  93. #if STRICT_ALIGNMENT
  94. if (((size_t)in | (size_t)out | (size_t)ivec) % sizeof(size_t) != 0) {
  95. size_t l = 0;
  96. while (l < len) {
  97. if (n == 0) {
  98. (*block)(ivec, ecount_buf, key);
  99. ctr128_inc(ivec);
  100. }
  101. out[l] = in[l] ^ ecount_buf[n];
  102. ++l;
  103. n = (n + 1) % 16;
  104. }
  105. *num = n;
  106. return;
  107. }
  108. #endif
  109. while (len >= 16) {
  110. (*block)(ivec, ecount_buf, key);
  111. ctr128_inc(ivec);
  112. for (; n < 16; n += sizeof(size_t)) {
  113. *(size_t *)(out + n) = *(size_t *)(in + n) ^ *(size_t *)(ecount_buf + n);
  114. }
  115. len -= 16;
  116. out += 16;
  117. in += 16;
  118. n = 0;
  119. }
  120. if (len) {
  121. (*block)(ivec, ecount_buf, key);
  122. ctr128_inc(ivec);
  123. while (len--) {
  124. out[n] = in[n] ^ ecount_buf[n];
  125. ++n;
  126. }
  127. }
  128. *num = n;
  129. }
  130. /* increment upper 96 bits of 128-bit counter by 1 */
  131. static void ctr96_inc(uint8_t *counter) {
  132. uint32_t n = 12;
  133. uint8_t c;
  134. do {
  135. --n;
  136. c = counter[n];
  137. ++c;
  138. counter[n] = c;
  139. if (c) {
  140. return;
  141. }
  142. } while (n);
  143. }
  144. void CRYPTO_ctr128_encrypt_ctr32(const uint8_t *in, uint8_t *out,
  145. size_t len, const void *key,
  146. uint8_t ivec[16],
  147. uint8_t ecount_buf[16],
  148. unsigned int *num, ctr128_f func) {
  149. unsigned int n, ctr32;
  150. assert(key && ecount_buf && num);
  151. assert(len == 0 || (in && out));
  152. assert(*num < 16);
  153. n = *num;
  154. while (n && len) {
  155. *(out++) = *(in++) ^ ecount_buf[n];
  156. --len;
  157. n = (n + 1) % 16;
  158. }
  159. ctr32 = GETU32(ivec + 12);
  160. while (len >= 16) {
  161. size_t blocks = len / 16;
  162. /* 1<<28 is just a not-so-small yet not-so-large number...
  163. * Below condition is practically never met, but it has to
  164. * be checked for code correctness. */
  165. if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) {
  166. blocks = (1U << 28);
  167. }
  168. /* As (*func) operates on 32-bit counter, caller
  169. * has to handle overflow. 'if' below detects the
  170. * overflow, which is then handled by limiting the
  171. * amount of blocks to the exact overflow point... */
  172. ctr32 += (uint32_t)blocks;
  173. if (ctr32 < blocks) {
  174. blocks -= ctr32;
  175. ctr32 = 0;
  176. }
  177. (*func)(in, out, blocks, key, ivec);
  178. /* (*func) does not update ivec, caller does: */
  179. PUTU32(ivec + 12, ctr32);
  180. /* ... overflow was detected, propogate carry. */
  181. if (ctr32 == 0) {
  182. ctr96_inc(ivec);
  183. }
  184. blocks *= 16;
  185. len -= blocks;
  186. out += blocks;
  187. in += blocks;
  188. }
  189. if (len) {
  190. memset(ecount_buf, 0, 16);
  191. (*func)(ecount_buf, ecount_buf, 1, key, ivec);
  192. ++ctr32;
  193. PUTU32(ivec + 12, ctr32);
  194. if (ctr32 == 0) {
  195. ctr96_inc(ivec);
  196. }
  197. while (len--) {
  198. out[n] = in[n] ^ ecount_buf[n];
  199. ++n;
  200. }
  201. }
  202. *num = n;
  203. }