Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

300 Zeilen
6.9 KiB

  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. #include <openssl/bn.h>
  57. #include <string.h>
  58. #include <openssl/err.h>
  59. #include "internal.h"
  60. int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) {
  61. int i, nw, lb, rb;
  62. BN_ULONG *t, *f;
  63. BN_ULONG l;
  64. if (n < 0) {
  65. OPENSSL_PUT_ERROR(BN, BN_lshift, BN_R_NEGATIVE_NUMBER);
  66. return 0;
  67. }
  68. r->neg = a->neg;
  69. nw = n / BN_BITS2;
  70. if (bn_wexpand(r, a->top + nw + 1) == NULL) {
  71. return 0;
  72. }
  73. lb = n % BN_BITS2;
  74. rb = BN_BITS2 - lb;
  75. f = a->d;
  76. t = r->d;
  77. t[a->top + nw] = 0;
  78. if (lb == 0) {
  79. for (i = a->top - 1; i >= 0; i--) {
  80. t[nw + i] = f[i];
  81. }
  82. } else {
  83. for (i = a->top - 1; i >= 0; i--) {
  84. l = f[i];
  85. t[nw + i + 1] |= (l >> rb) & BN_MASK2;
  86. t[nw + i] = (l << lb) & BN_MASK2;
  87. }
  88. }
  89. memset(t, 0, nw * sizeof(t[0]));
  90. r->top = a->top + nw + 1;
  91. bn_correct_top(r);
  92. return 1;
  93. }
  94. int BN_lshift1(BIGNUM *r, const BIGNUM *a) {
  95. BN_ULONG *ap, *rp, t, c;
  96. int i;
  97. if (r != a) {
  98. r->neg = a->neg;
  99. if (bn_wexpand(r, a->top + 1) == NULL) {
  100. return 0;
  101. }
  102. r->top = a->top;
  103. } else {
  104. if (bn_wexpand(r, a->top + 1) == NULL) {
  105. return 0;
  106. }
  107. }
  108. ap = a->d;
  109. rp = r->d;
  110. c = 0;
  111. for (i = 0; i < a->top; i++) {
  112. t = *(ap++);
  113. *(rp++) = ((t << 1) | c) & BN_MASK2;
  114. c = (t & BN_TBIT) ? 1 : 0;
  115. }
  116. if (c) {
  117. *rp = 1;
  118. r->top++;
  119. }
  120. return 1;
  121. }
  122. int BN_rshift(BIGNUM *r, const BIGNUM *a, int n) {
  123. int i, j, nw, lb, rb;
  124. BN_ULONG *t, *f;
  125. BN_ULONG l, tmp;
  126. if (n < 0) {
  127. OPENSSL_PUT_ERROR(BN, BN_rshift, BN_R_NEGATIVE_NUMBER);
  128. return 0;
  129. }
  130. nw = n / BN_BITS2;
  131. rb = n % BN_BITS2;
  132. lb = BN_BITS2 - rb;
  133. if (nw >= a->top || a->top == 0) {
  134. BN_zero(r);
  135. return 1;
  136. }
  137. i = (BN_num_bits(a) - n + (BN_BITS2 - 1)) / BN_BITS2;
  138. if (r != a) {
  139. r->neg = a->neg;
  140. if (bn_wexpand(r, i) == NULL) {
  141. return 0;
  142. }
  143. } else {
  144. if (n == 0) {
  145. return 1; /* or the copying loop will go berserk */
  146. }
  147. }
  148. f = &(a->d[nw]);
  149. t = r->d;
  150. j = a->top - nw;
  151. r->top = i;
  152. if (rb == 0) {
  153. for (i = j; i != 0; i--) {
  154. *(t++) = *(f++);
  155. }
  156. } else {
  157. l = *(f++);
  158. for (i = j - 1; i != 0; i--) {
  159. tmp = (l >> rb) & BN_MASK2;
  160. l = *(f++);
  161. *(t++) = (tmp | (l << lb)) & BN_MASK2;
  162. }
  163. if ((l = (l >> rb) & BN_MASK2)) {
  164. *(t) = l;
  165. }
  166. }
  167. return 1;
  168. }
  169. int BN_rshift1(BIGNUM *r, const BIGNUM *a) {
  170. BN_ULONG *ap, *rp, t, c;
  171. int i, j;
  172. if (BN_is_zero(a)) {
  173. BN_zero(r);
  174. return 1;
  175. }
  176. i = a->top;
  177. ap = a->d;
  178. j = i - (ap[i - 1] == 1);
  179. if (a != r) {
  180. if (bn_wexpand(r, j) == NULL) {
  181. return 0;
  182. }
  183. r->neg = a->neg;
  184. }
  185. rp = r->d;
  186. t = ap[--i];
  187. c = (t & 1) ? BN_TBIT : 0;
  188. if (t >>= 1) {
  189. rp[i] = t;
  190. }
  191. while (i > 0) {
  192. t = ap[--i];
  193. rp[i] = ((t >> 1) & BN_MASK2) | c;
  194. c = (t & 1) ? BN_TBIT : 0;
  195. }
  196. r->top = j;
  197. return 1;
  198. }
  199. int BN_set_bit(BIGNUM *a, int n) {
  200. int i, j, k;
  201. if (n < 0) {
  202. return 0;
  203. }
  204. i = n / BN_BITS2;
  205. j = n % BN_BITS2;
  206. if (a->top <= i) {
  207. if (bn_wexpand(a, i + 1) == NULL) {
  208. return 0;
  209. }
  210. for (k = a->top; k < i + 1; k++) {
  211. a->d[k] = 0;
  212. }
  213. a->top = i + 1;
  214. }
  215. a->d[i] |= (((BN_ULONG)1) << j);
  216. return 1;
  217. }
  218. int BN_clear_bit(BIGNUM *a, int n) {
  219. int i, j;
  220. if (n < 0) {
  221. return 0;
  222. }
  223. i = n / BN_BITS2;
  224. j = n % BN_BITS2;
  225. if (a->top <= i) {
  226. return 0;
  227. }
  228. a->d[i] &= (~(((BN_ULONG)1) << j));
  229. bn_correct_top(a);
  230. return 1;
  231. }
  232. int BN_is_bit_set(const BIGNUM *a, int n) {
  233. int i, j;
  234. if (n < 0) {
  235. return 0;
  236. }
  237. i = n / BN_BITS2;
  238. j = n % BN_BITS2;
  239. if (a->top <= i) {
  240. return 0;
  241. }
  242. return (a->d[i]>>j)&1;
  243. }
  244. int BN_mask_bits(BIGNUM *a, int n) {
  245. int b, w;
  246. if (n < 0) {
  247. return 0;
  248. }
  249. w = n / BN_BITS2;
  250. b = n % BN_BITS2;
  251. if (w >= a->top) {
  252. return 0;
  253. }
  254. if (b == 0) {
  255. a->top = w;
  256. } else {
  257. a->top = w + 1;
  258. a->d[w] &= ~(BN_MASK2 << b);
  259. }
  260. bn_correct_top(a);
  261. return 1;
  262. }