Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

308 rader
7.0 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_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. OPENSSL_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_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. if (r->top == 0) {
  168. r->neg = 0;
  169. }
  170. return 1;
  171. }
  172. int BN_rshift1(BIGNUM *r, const BIGNUM *a) {
  173. BN_ULONG *ap, *rp, t, c;
  174. int i, j;
  175. if (BN_is_zero(a)) {
  176. BN_zero(r);
  177. return 1;
  178. }
  179. i = a->top;
  180. ap = a->d;
  181. j = i - (ap[i - 1] == 1);
  182. if (a != r) {
  183. if (bn_wexpand(r, j) == NULL) {
  184. return 0;
  185. }
  186. r->neg = a->neg;
  187. }
  188. rp = r->d;
  189. t = ap[--i];
  190. c = (t & 1) ? BN_TBIT : 0;
  191. if (t >>= 1) {
  192. rp[i] = t;
  193. }
  194. while (i > 0) {
  195. t = ap[--i];
  196. rp[i] = ((t >> 1) & BN_MASK2) | c;
  197. c = (t & 1) ? BN_TBIT : 0;
  198. }
  199. r->top = j;
  200. if (r->top == 0) {
  201. r->neg = 0;
  202. }
  203. return 1;
  204. }
  205. int BN_set_bit(BIGNUM *a, int n) {
  206. int i, j, k;
  207. if (n < 0) {
  208. return 0;
  209. }
  210. i = n / BN_BITS2;
  211. j = n % BN_BITS2;
  212. if (a->top <= i) {
  213. if (bn_wexpand(a, i + 1) == NULL) {
  214. return 0;
  215. }
  216. for (k = a->top; k < i + 1; k++) {
  217. a->d[k] = 0;
  218. }
  219. a->top = i + 1;
  220. }
  221. a->d[i] |= (((BN_ULONG)1) << j);
  222. return 1;
  223. }
  224. int BN_clear_bit(BIGNUM *a, int n) {
  225. int i, j;
  226. if (n < 0) {
  227. return 0;
  228. }
  229. i = n / BN_BITS2;
  230. j = n % BN_BITS2;
  231. if (a->top <= i) {
  232. return 0;
  233. }
  234. a->d[i] &= (~(((BN_ULONG)1) << j));
  235. bn_correct_top(a);
  236. return 1;
  237. }
  238. int BN_is_bit_set(const BIGNUM *a, int n) {
  239. int i, j;
  240. if (n < 0) {
  241. return 0;
  242. }
  243. i = n / BN_BITS2;
  244. j = n % BN_BITS2;
  245. if (a->top <= i) {
  246. return 0;
  247. }
  248. return (a->d[i]>>j)&1;
  249. }
  250. int BN_mask_bits(BIGNUM *a, int n) {
  251. int b, w;
  252. if (n < 0) {
  253. return 0;
  254. }
  255. w = n / BN_BITS2;
  256. b = n % BN_BITS2;
  257. if (w >= a->top) {
  258. return 0;
  259. }
  260. if (b == 0) {
  261. a->top = w;
  262. } else {
  263. a->top = w + 1;
  264. a->d[w] &= ~(BN_MASK2 << b);
  265. }
  266. bn_correct_top(a);
  267. return 1;
  268. }