ring-native 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (261) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/Gemfile +3 -0
  4. data/README.md +22 -0
  5. data/Rakefile +1 -0
  6. data/ext/ring/extconf.rb +29 -0
  7. data/lib/ring/native.rb +8 -0
  8. data/lib/ring/native/version.rb +5 -0
  9. data/ring-native.gemspec +25 -0
  10. data/vendor/ring/BUILDING.md +40 -0
  11. data/vendor/ring/Cargo.toml +43 -0
  12. data/vendor/ring/LICENSE +185 -0
  13. data/vendor/ring/Makefile +35 -0
  14. data/vendor/ring/PORTING.md +163 -0
  15. data/vendor/ring/README.md +113 -0
  16. data/vendor/ring/STYLE.md +197 -0
  17. data/vendor/ring/appveyor.yml +27 -0
  18. data/vendor/ring/build.rs +108 -0
  19. data/vendor/ring/crypto/aes/aes.c +1142 -0
  20. data/vendor/ring/crypto/aes/aes_test.Windows.vcxproj +25 -0
  21. data/vendor/ring/crypto/aes/aes_test.cc +93 -0
  22. data/vendor/ring/crypto/aes/asm/aes-586.pl +2368 -0
  23. data/vendor/ring/crypto/aes/asm/aes-armv4.pl +1249 -0
  24. data/vendor/ring/crypto/aes/asm/aes-x86_64.pl +2246 -0
  25. data/vendor/ring/crypto/aes/asm/aesni-x86.pl +1318 -0
  26. data/vendor/ring/crypto/aes/asm/aesni-x86_64.pl +2084 -0
  27. data/vendor/ring/crypto/aes/asm/aesv8-armx.pl +675 -0
  28. data/vendor/ring/crypto/aes/asm/bsaes-armv7.pl +1364 -0
  29. data/vendor/ring/crypto/aes/asm/bsaes-x86_64.pl +1565 -0
  30. data/vendor/ring/crypto/aes/asm/vpaes-x86.pl +841 -0
  31. data/vendor/ring/crypto/aes/asm/vpaes-x86_64.pl +1116 -0
  32. data/vendor/ring/crypto/aes/internal.h +87 -0
  33. data/vendor/ring/crypto/aes/mode_wrappers.c +61 -0
  34. data/vendor/ring/crypto/bn/add.c +394 -0
  35. data/vendor/ring/crypto/bn/asm/armv4-mont.pl +694 -0
  36. data/vendor/ring/crypto/bn/asm/armv8-mont.pl +1503 -0
  37. data/vendor/ring/crypto/bn/asm/bn-586.pl +774 -0
  38. data/vendor/ring/crypto/bn/asm/co-586.pl +287 -0
  39. data/vendor/ring/crypto/bn/asm/rsaz-avx2.pl +1882 -0
  40. data/vendor/ring/crypto/bn/asm/x86-mont.pl +592 -0
  41. data/vendor/ring/crypto/bn/asm/x86_64-gcc.c +599 -0
  42. data/vendor/ring/crypto/bn/asm/x86_64-mont.pl +1393 -0
  43. data/vendor/ring/crypto/bn/asm/x86_64-mont5.pl +3507 -0
  44. data/vendor/ring/crypto/bn/bn.c +352 -0
  45. data/vendor/ring/crypto/bn/bn_asn1.c +74 -0
  46. data/vendor/ring/crypto/bn/bn_test.Windows.vcxproj +25 -0
  47. data/vendor/ring/crypto/bn/bn_test.cc +1696 -0
  48. data/vendor/ring/crypto/bn/cmp.c +200 -0
  49. data/vendor/ring/crypto/bn/convert.c +433 -0
  50. data/vendor/ring/crypto/bn/ctx.c +311 -0
  51. data/vendor/ring/crypto/bn/div.c +594 -0
  52. data/vendor/ring/crypto/bn/exponentiation.c +1335 -0
  53. data/vendor/ring/crypto/bn/gcd.c +711 -0
  54. data/vendor/ring/crypto/bn/generic.c +1019 -0
  55. data/vendor/ring/crypto/bn/internal.h +316 -0
  56. data/vendor/ring/crypto/bn/montgomery.c +516 -0
  57. data/vendor/ring/crypto/bn/mul.c +888 -0
  58. data/vendor/ring/crypto/bn/prime.c +829 -0
  59. data/vendor/ring/crypto/bn/random.c +334 -0
  60. data/vendor/ring/crypto/bn/rsaz_exp.c +262 -0
  61. data/vendor/ring/crypto/bn/rsaz_exp.h +53 -0
  62. data/vendor/ring/crypto/bn/shift.c +276 -0
  63. data/vendor/ring/crypto/bytestring/bytestring_test.Windows.vcxproj +25 -0
  64. data/vendor/ring/crypto/bytestring/bytestring_test.cc +421 -0
  65. data/vendor/ring/crypto/bytestring/cbb.c +399 -0
  66. data/vendor/ring/crypto/bytestring/cbs.c +227 -0
  67. data/vendor/ring/crypto/bytestring/internal.h +46 -0
  68. data/vendor/ring/crypto/chacha/chacha_generic.c +140 -0
  69. data/vendor/ring/crypto/chacha/chacha_vec.c +323 -0
  70. data/vendor/ring/crypto/chacha/chacha_vec_arm.S +1447 -0
  71. data/vendor/ring/crypto/chacha/chacha_vec_arm_generate.go +153 -0
  72. data/vendor/ring/crypto/cipher/cipher_test.Windows.vcxproj +25 -0
  73. data/vendor/ring/crypto/cipher/e_aes.c +390 -0
  74. data/vendor/ring/crypto/cipher/e_chacha20poly1305.c +208 -0
  75. data/vendor/ring/crypto/cipher/internal.h +173 -0
  76. data/vendor/ring/crypto/cipher/test/aes_128_gcm_tests.txt +543 -0
  77. data/vendor/ring/crypto/cipher/test/aes_128_key_wrap_tests.txt +9 -0
  78. data/vendor/ring/crypto/cipher/test/aes_256_gcm_tests.txt +475 -0
  79. data/vendor/ring/crypto/cipher/test/aes_256_key_wrap_tests.txt +23 -0
  80. data/vendor/ring/crypto/cipher/test/chacha20_poly1305_old_tests.txt +422 -0
  81. data/vendor/ring/crypto/cipher/test/chacha20_poly1305_tests.txt +484 -0
  82. data/vendor/ring/crypto/cipher/test/cipher_test.txt +100 -0
  83. data/vendor/ring/crypto/constant_time_test.Windows.vcxproj +25 -0
  84. data/vendor/ring/crypto/constant_time_test.c +304 -0
  85. data/vendor/ring/crypto/cpu-arm-asm.S +32 -0
  86. data/vendor/ring/crypto/cpu-arm.c +199 -0
  87. data/vendor/ring/crypto/cpu-intel.c +261 -0
  88. data/vendor/ring/crypto/crypto.c +151 -0
  89. data/vendor/ring/crypto/curve25519/asm/x25519-arm.S +2118 -0
  90. data/vendor/ring/crypto/curve25519/curve25519.c +4888 -0
  91. data/vendor/ring/crypto/curve25519/x25519_test.cc +128 -0
  92. data/vendor/ring/crypto/digest/md32_common.h +181 -0
  93. data/vendor/ring/crypto/ec/asm/p256-x86_64-asm.pl +2725 -0
  94. data/vendor/ring/crypto/ec/ec.c +193 -0
  95. data/vendor/ring/crypto/ec/ec_curves.c +61 -0
  96. data/vendor/ring/crypto/ec/ec_key.c +228 -0
  97. data/vendor/ring/crypto/ec/ec_montgomery.c +114 -0
  98. data/vendor/ring/crypto/ec/example_mul.Windows.vcxproj +25 -0
  99. data/vendor/ring/crypto/ec/internal.h +243 -0
  100. data/vendor/ring/crypto/ec/oct.c +253 -0
  101. data/vendor/ring/crypto/ec/p256-64.c +1794 -0
  102. data/vendor/ring/crypto/ec/p256-x86_64-table.h +9548 -0
  103. data/vendor/ring/crypto/ec/p256-x86_64.c +509 -0
  104. data/vendor/ring/crypto/ec/simple.c +1007 -0
  105. data/vendor/ring/crypto/ec/util-64.c +183 -0
  106. data/vendor/ring/crypto/ec/wnaf.c +508 -0
  107. data/vendor/ring/crypto/ecdh/ecdh.c +155 -0
  108. data/vendor/ring/crypto/ecdsa/ecdsa.c +304 -0
  109. data/vendor/ring/crypto/ecdsa/ecdsa_asn1.c +193 -0
  110. data/vendor/ring/crypto/ecdsa/ecdsa_test.Windows.vcxproj +25 -0
  111. data/vendor/ring/crypto/ecdsa/ecdsa_test.cc +327 -0
  112. data/vendor/ring/crypto/header_removed.h +17 -0
  113. data/vendor/ring/crypto/internal.h +495 -0
  114. data/vendor/ring/crypto/libring.Windows.vcxproj +101 -0
  115. data/vendor/ring/crypto/mem.c +98 -0
  116. data/vendor/ring/crypto/modes/asm/aesni-gcm-x86_64.pl +1045 -0
  117. data/vendor/ring/crypto/modes/asm/ghash-armv4.pl +517 -0
  118. data/vendor/ring/crypto/modes/asm/ghash-x86.pl +1393 -0
  119. data/vendor/ring/crypto/modes/asm/ghash-x86_64.pl +1741 -0
  120. data/vendor/ring/crypto/modes/asm/ghashv8-armx.pl +422 -0
  121. data/vendor/ring/crypto/modes/ctr.c +226 -0
  122. data/vendor/ring/crypto/modes/gcm.c +1206 -0
  123. data/vendor/ring/crypto/modes/gcm_test.Windows.vcxproj +25 -0
  124. data/vendor/ring/crypto/modes/gcm_test.c +348 -0
  125. data/vendor/ring/crypto/modes/internal.h +299 -0
  126. data/vendor/ring/crypto/perlasm/arm-xlate.pl +170 -0
  127. data/vendor/ring/crypto/perlasm/readme +100 -0
  128. data/vendor/ring/crypto/perlasm/x86_64-xlate.pl +1164 -0
  129. data/vendor/ring/crypto/perlasm/x86asm.pl +292 -0
  130. data/vendor/ring/crypto/perlasm/x86gas.pl +263 -0
  131. data/vendor/ring/crypto/perlasm/x86masm.pl +200 -0
  132. data/vendor/ring/crypto/perlasm/x86nasm.pl +187 -0
  133. data/vendor/ring/crypto/poly1305/poly1305.c +331 -0
  134. data/vendor/ring/crypto/poly1305/poly1305_arm.c +301 -0
  135. data/vendor/ring/crypto/poly1305/poly1305_arm_asm.S +2015 -0
  136. data/vendor/ring/crypto/poly1305/poly1305_test.Windows.vcxproj +25 -0
  137. data/vendor/ring/crypto/poly1305/poly1305_test.cc +80 -0
  138. data/vendor/ring/crypto/poly1305/poly1305_test.txt +52 -0
  139. data/vendor/ring/crypto/poly1305/poly1305_vec.c +892 -0
  140. data/vendor/ring/crypto/rand/asm/rdrand-x86_64.pl +75 -0
  141. data/vendor/ring/crypto/rand/internal.h +32 -0
  142. data/vendor/ring/crypto/rand/rand.c +189 -0
  143. data/vendor/ring/crypto/rand/urandom.c +219 -0
  144. data/vendor/ring/crypto/rand/windows.c +56 -0
  145. data/vendor/ring/crypto/refcount_c11.c +66 -0
  146. data/vendor/ring/crypto/refcount_lock.c +53 -0
  147. data/vendor/ring/crypto/refcount_test.Windows.vcxproj +25 -0
  148. data/vendor/ring/crypto/refcount_test.c +58 -0
  149. data/vendor/ring/crypto/rsa/blinding.c +462 -0
  150. data/vendor/ring/crypto/rsa/internal.h +108 -0
  151. data/vendor/ring/crypto/rsa/padding.c +300 -0
  152. data/vendor/ring/crypto/rsa/rsa.c +450 -0
  153. data/vendor/ring/crypto/rsa/rsa_asn1.c +261 -0
  154. data/vendor/ring/crypto/rsa/rsa_impl.c +944 -0
  155. data/vendor/ring/crypto/rsa/rsa_test.Windows.vcxproj +25 -0
  156. data/vendor/ring/crypto/rsa/rsa_test.cc +437 -0
  157. data/vendor/ring/crypto/sha/asm/sha-armv8.pl +436 -0
  158. data/vendor/ring/crypto/sha/asm/sha-x86_64.pl +2390 -0
  159. data/vendor/ring/crypto/sha/asm/sha256-586.pl +1275 -0
  160. data/vendor/ring/crypto/sha/asm/sha256-armv4.pl +735 -0
  161. data/vendor/ring/crypto/sha/asm/sha256-armv8.pl +14 -0
  162. data/vendor/ring/crypto/sha/asm/sha256-x86_64.pl +14 -0
  163. data/vendor/ring/crypto/sha/asm/sha512-586.pl +911 -0
  164. data/vendor/ring/crypto/sha/asm/sha512-armv4.pl +666 -0
  165. data/vendor/ring/crypto/sha/asm/sha512-armv8.pl +14 -0
  166. data/vendor/ring/crypto/sha/asm/sha512-x86_64.pl +14 -0
  167. data/vendor/ring/crypto/sha/sha1.c +271 -0
  168. data/vendor/ring/crypto/sha/sha256.c +204 -0
  169. data/vendor/ring/crypto/sha/sha512.c +355 -0
  170. data/vendor/ring/crypto/test/file_test.cc +326 -0
  171. data/vendor/ring/crypto/test/file_test.h +181 -0
  172. data/vendor/ring/crypto/test/malloc.cc +150 -0
  173. data/vendor/ring/crypto/test/scoped_types.h +95 -0
  174. data/vendor/ring/crypto/test/test.Windows.vcxproj +35 -0
  175. data/vendor/ring/crypto/test/test_util.cc +46 -0
  176. data/vendor/ring/crypto/test/test_util.h +41 -0
  177. data/vendor/ring/crypto/thread_none.c +55 -0
  178. data/vendor/ring/crypto/thread_pthread.c +165 -0
  179. data/vendor/ring/crypto/thread_test.Windows.vcxproj +25 -0
  180. data/vendor/ring/crypto/thread_test.c +200 -0
  181. data/vendor/ring/crypto/thread_win.c +282 -0
  182. data/vendor/ring/examples/checkdigest.rs +103 -0
  183. data/vendor/ring/include/openssl/aes.h +121 -0
  184. data/vendor/ring/include/openssl/arm_arch.h +129 -0
  185. data/vendor/ring/include/openssl/base.h +156 -0
  186. data/vendor/ring/include/openssl/bn.h +794 -0
  187. data/vendor/ring/include/openssl/buffer.h +18 -0
  188. data/vendor/ring/include/openssl/bytestring.h +235 -0
  189. data/vendor/ring/include/openssl/chacha.h +37 -0
  190. data/vendor/ring/include/openssl/cmac.h +76 -0
  191. data/vendor/ring/include/openssl/cpu.h +184 -0
  192. data/vendor/ring/include/openssl/crypto.h +43 -0
  193. data/vendor/ring/include/openssl/curve25519.h +88 -0
  194. data/vendor/ring/include/openssl/ec.h +225 -0
  195. data/vendor/ring/include/openssl/ec_key.h +129 -0
  196. data/vendor/ring/include/openssl/ecdh.h +110 -0
  197. data/vendor/ring/include/openssl/ecdsa.h +156 -0
  198. data/vendor/ring/include/openssl/err.h +201 -0
  199. data/vendor/ring/include/openssl/mem.h +101 -0
  200. data/vendor/ring/include/openssl/obj_mac.h +71 -0
  201. data/vendor/ring/include/openssl/opensslfeatures.h +68 -0
  202. data/vendor/ring/include/openssl/opensslv.h +18 -0
  203. data/vendor/ring/include/openssl/ossl_typ.h +18 -0
  204. data/vendor/ring/include/openssl/poly1305.h +51 -0
  205. data/vendor/ring/include/openssl/rand.h +70 -0
  206. data/vendor/ring/include/openssl/rsa.h +399 -0
  207. data/vendor/ring/include/openssl/thread.h +133 -0
  208. data/vendor/ring/include/openssl/type_check.h +71 -0
  209. data/vendor/ring/mk/Common.props +63 -0
  210. data/vendor/ring/mk/Windows.props +42 -0
  211. data/vendor/ring/mk/WindowsTest.props +18 -0
  212. data/vendor/ring/mk/appveyor.bat +62 -0
  213. data/vendor/ring/mk/bottom_of_makefile.mk +54 -0
  214. data/vendor/ring/mk/ring.mk +266 -0
  215. data/vendor/ring/mk/top_of_makefile.mk +214 -0
  216. data/vendor/ring/mk/travis.sh +40 -0
  217. data/vendor/ring/mk/update-travis-yml.py +229 -0
  218. data/vendor/ring/ring.sln +153 -0
  219. data/vendor/ring/src/aead.rs +682 -0
  220. data/vendor/ring/src/agreement.rs +248 -0
  221. data/vendor/ring/src/c.rs +129 -0
  222. data/vendor/ring/src/constant_time.rs +37 -0
  223. data/vendor/ring/src/der.rs +96 -0
  224. data/vendor/ring/src/digest.rs +690 -0
  225. data/vendor/ring/src/digest_tests.txt +57 -0
  226. data/vendor/ring/src/ecc.rs +28 -0
  227. data/vendor/ring/src/ecc_build.rs +279 -0
  228. data/vendor/ring/src/ecc_curves.rs +117 -0
  229. data/vendor/ring/src/ed25519_tests.txt +2579 -0
  230. data/vendor/ring/src/exe_tests.rs +46 -0
  231. data/vendor/ring/src/ffi.rs +29 -0
  232. data/vendor/ring/src/file_test.rs +187 -0
  233. data/vendor/ring/src/hkdf.rs +153 -0
  234. data/vendor/ring/src/hkdf_tests.txt +59 -0
  235. data/vendor/ring/src/hmac.rs +414 -0
  236. data/vendor/ring/src/hmac_tests.txt +97 -0
  237. data/vendor/ring/src/input.rs +312 -0
  238. data/vendor/ring/src/lib.rs +41 -0
  239. data/vendor/ring/src/pbkdf2.rs +265 -0
  240. data/vendor/ring/src/pbkdf2_tests.txt +113 -0
  241. data/vendor/ring/src/polyfill.rs +57 -0
  242. data/vendor/ring/src/rand.rs +28 -0
  243. data/vendor/ring/src/signature.rs +314 -0
  244. data/vendor/ring/third-party/NIST/README.md +9 -0
  245. data/vendor/ring/third-party/NIST/SHAVS/SHA1LongMsg.rsp +263 -0
  246. data/vendor/ring/third-party/NIST/SHAVS/SHA1Monte.rsp +309 -0
  247. data/vendor/ring/third-party/NIST/SHAVS/SHA1ShortMsg.rsp +267 -0
  248. data/vendor/ring/third-party/NIST/SHAVS/SHA224LongMsg.rsp +263 -0
  249. data/vendor/ring/third-party/NIST/SHAVS/SHA224Monte.rsp +309 -0
  250. data/vendor/ring/third-party/NIST/SHAVS/SHA224ShortMsg.rsp +267 -0
  251. data/vendor/ring/third-party/NIST/SHAVS/SHA256LongMsg.rsp +263 -0
  252. data/vendor/ring/third-party/NIST/SHAVS/SHA256Monte.rsp +309 -0
  253. data/vendor/ring/third-party/NIST/SHAVS/SHA256ShortMsg.rsp +267 -0
  254. data/vendor/ring/third-party/NIST/SHAVS/SHA384LongMsg.rsp +519 -0
  255. data/vendor/ring/third-party/NIST/SHAVS/SHA384Monte.rsp +309 -0
  256. data/vendor/ring/third-party/NIST/SHAVS/SHA384ShortMsg.rsp +523 -0
  257. data/vendor/ring/third-party/NIST/SHAVS/SHA512LongMsg.rsp +519 -0
  258. data/vendor/ring/third-party/NIST/SHAVS/SHA512Monte.rsp +309 -0
  259. data/vendor/ring/third-party/NIST/SHAVS/SHA512ShortMsg.rsp +523 -0
  260. data/vendor/ring/third-party/NIST/sha256sums.txt +1 -0
  261. metadata +333 -0
@@ -0,0 +1,352 @@
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
+
57
+ #include <openssl/bn.h>
58
+
59
+ #include <limits.h>
60
+ #include <string.h>
61
+
62
+ #include <openssl/err.h>
63
+ #include <openssl/mem.h>
64
+
65
+ #include "internal.h"
66
+
67
+
68
+ BIGNUM *BN_new(void) {
69
+ BIGNUM *bn = OPENSSL_malloc(sizeof(BIGNUM));
70
+
71
+ if (bn == NULL) {
72
+ OPENSSL_PUT_ERROR(BN, ERR_R_MALLOC_FAILURE);
73
+ return NULL;
74
+ }
75
+
76
+ memset(bn, 0, sizeof(BIGNUM));
77
+ bn->flags = BN_FLG_MALLOCED;
78
+
79
+ return bn;
80
+ }
81
+
82
+ void BN_init(BIGNUM *bn) {
83
+ memset(bn, 0, sizeof(BIGNUM));
84
+ }
85
+
86
+ void BN_free(BIGNUM *bn) {
87
+ if (bn == NULL) {
88
+ return;
89
+ }
90
+
91
+ if ((bn->flags & BN_FLG_STATIC_DATA) == 0) {
92
+ OPENSSL_free(bn->d);
93
+ }
94
+
95
+ if (bn->flags & BN_FLG_MALLOCED) {
96
+ OPENSSL_free(bn);
97
+ } else {
98
+ bn->d = NULL;
99
+ }
100
+ }
101
+
102
+ void BN_clear_free(BIGNUM *bn) {
103
+ char should_free;
104
+
105
+ if (bn == NULL) {
106
+ return;
107
+ }
108
+
109
+ if (bn->d != NULL) {
110
+ OPENSSL_cleanse(bn->d, bn->dmax * sizeof(bn->d[0]));
111
+ if ((bn->flags & BN_FLG_STATIC_DATA) == 0) {
112
+ OPENSSL_free(bn->d);
113
+ }
114
+ }
115
+
116
+ should_free = (bn->flags & BN_FLG_MALLOCED) != 0;
117
+ OPENSSL_cleanse(bn, sizeof(BIGNUM));
118
+ if (should_free) {
119
+ OPENSSL_free(bn);
120
+ }
121
+ }
122
+
123
+ BIGNUM *BN_dup(const BIGNUM *src) {
124
+ BIGNUM *copy;
125
+
126
+ if (src == NULL) {
127
+ return NULL;
128
+ }
129
+
130
+ copy = BN_new();
131
+ if (copy == NULL) {
132
+ return NULL;
133
+ }
134
+
135
+ if (!BN_copy(copy, src)) {
136
+ BN_free(copy);
137
+ return NULL;
138
+ }
139
+
140
+ return copy;
141
+ }
142
+
143
+ BIGNUM *BN_copy(BIGNUM *dest, const BIGNUM *src) {
144
+ if (src == dest) {
145
+ return dest;
146
+ }
147
+
148
+ if (bn_wexpand(dest, src->top) == NULL) {
149
+ return NULL;
150
+ }
151
+
152
+ memcpy(dest->d, src->d, sizeof(src->d[0]) * src->top);
153
+
154
+ dest->top = src->top;
155
+ dest->neg = src->neg;
156
+ return dest;
157
+ }
158
+
159
+ void BN_clear(BIGNUM *bn) {
160
+ if (bn->d != NULL) {
161
+ memset(bn->d, 0, bn->dmax * sizeof(bn->d[0]));
162
+ }
163
+
164
+ bn->top = 0;
165
+ bn->neg = 0;
166
+ }
167
+
168
+ const BIGNUM *BN_value_one(void) {
169
+ static const BN_ULONG kOneLimbs[1] = { 1 };
170
+ static const BIGNUM kOne = STATIC_BIGNUM(kOneLimbs);
171
+
172
+ return &kOne;
173
+ }
174
+
175
+ void BN_with_flags(BIGNUM *out, const BIGNUM *in, int flags) {
176
+ memcpy(out, in, sizeof(BIGNUM));
177
+ out->flags &= ~BN_FLG_MALLOCED;
178
+ out->flags |= BN_FLG_STATIC_DATA | flags;
179
+ }
180
+
181
+ /* BN_num_bits_word returns the minimum number of bits needed to represent the
182
+ * value in |l|. */
183
+ unsigned BN_num_bits_word(BN_ULONG l) {
184
+ static const unsigned char bits[256] = {
185
+ 0, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5,
186
+ 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6,
187
+ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7,
188
+ 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
189
+ 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7,
190
+ 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
191
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
192
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
193
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
194
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8,
195
+ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8};
196
+
197
+ #if defined(OPENSSL_64_BIT)
198
+ if (l & 0xffffffff00000000L) {
199
+ if (l & 0xffff000000000000L) {
200
+ if (l & 0xff00000000000000L) {
201
+ return (bits[(int)(l >> 56)] + 56);
202
+ } else {
203
+ return (bits[(int)(l >> 48)] + 48);
204
+ }
205
+ } else {
206
+ if (l & 0x0000ff0000000000L) {
207
+ return (bits[(int)(l >> 40)] + 40);
208
+ } else {
209
+ return (bits[(int)(l >> 32)] + 32);
210
+ }
211
+ }
212
+ } else
213
+ #endif
214
+ {
215
+ if (l & 0xffff0000L) {
216
+ if (l & 0xff000000L) {
217
+ return (bits[(int)(l >> 24L)] + 24);
218
+ } else {
219
+ return (bits[(int)(l >> 16L)] + 16);
220
+ }
221
+ } else {
222
+ if (l & 0xff00L) {
223
+ return (bits[(int)(l >> 8)] + 8);
224
+ } else {
225
+ return (bits[(int)(l)]);
226
+ }
227
+ }
228
+ }
229
+ }
230
+
231
+ unsigned BN_num_bits(const BIGNUM *bn) {
232
+ const int max = bn->top - 1;
233
+
234
+ if (BN_is_zero(bn)) {
235
+ return 0;
236
+ }
237
+
238
+ return max*BN_BITS2 + BN_num_bits_word(bn->d[max]);
239
+ }
240
+
241
+ unsigned BN_num_bytes(const BIGNUM *bn) {
242
+ return (BN_num_bits(bn) + 7) / 8;
243
+ }
244
+
245
+ void BN_zero(BIGNUM *bn) {
246
+ bn->top = bn->neg = 0;
247
+ }
248
+
249
+ int BN_one(BIGNUM *bn) {
250
+ return BN_set_word(bn, 1);
251
+ }
252
+
253
+ int BN_set_word(BIGNUM *bn, BN_ULONG value) {
254
+ if (value == 0) {
255
+ BN_zero(bn);
256
+ return 1;
257
+ }
258
+
259
+ if (bn_wexpand(bn, 1) == NULL) {
260
+ return 0;
261
+ }
262
+
263
+ bn->neg = 0;
264
+ bn->d[0] = value;
265
+ bn->top = 1;
266
+ return 1;
267
+ }
268
+
269
+ int bn_set_words(BIGNUM *bn, const BN_ULONG *words, size_t num) {
270
+ if (bn_wexpand(bn, num) == NULL) {
271
+ return 0;
272
+ }
273
+ memmove(bn->d, words, num * sizeof(BN_ULONG));
274
+ /* |bn_wexpand| verified that |num| isn't too large. */
275
+ bn->top = (int) num;
276
+ bn_correct_top(bn);
277
+ return 1;
278
+ }
279
+
280
+ int BN_is_negative(const BIGNUM *bn) {
281
+ return bn->neg != 0;
282
+ }
283
+
284
+ void BN_set_negative(BIGNUM *bn, int sign) {
285
+ if (sign && !BN_is_zero(bn)) {
286
+ bn->neg = 1;
287
+ } else {
288
+ bn->neg = 0;
289
+ }
290
+ }
291
+
292
+ BIGNUM *bn_wexpand(BIGNUM *bn, size_t words) {
293
+ BN_ULONG *a;
294
+
295
+ if (words <= (size_t)bn->dmax) {
296
+ return bn;
297
+ }
298
+
299
+ if (words > (INT_MAX / (4 * BN_BITS2))) {
300
+ OPENSSL_PUT_ERROR(BN, BN_R_BIGNUM_TOO_LONG);
301
+ return NULL;
302
+ }
303
+
304
+ if (bn->flags & BN_FLG_STATIC_DATA) {
305
+ OPENSSL_PUT_ERROR(BN, BN_R_EXPAND_ON_STATIC_BIGNUM_DATA);
306
+ return NULL;
307
+ }
308
+
309
+ a = (BN_ULONG *)OPENSSL_malloc(sizeof(BN_ULONG) * words);
310
+ if (a == NULL) {
311
+ OPENSSL_PUT_ERROR(BN, ERR_R_MALLOC_FAILURE);
312
+ return NULL;
313
+ }
314
+
315
+ memcpy(a, bn->d, sizeof(BN_ULONG) * bn->top);
316
+
317
+ OPENSSL_free(bn->d);
318
+ bn->d = a;
319
+ bn->dmax = (int)words;
320
+
321
+ return bn;
322
+ }
323
+
324
+ BIGNUM *bn_expand(BIGNUM *bn, size_t bits) {
325
+ if (bits + BN_BITS2 - 1 < bits) {
326
+ OPENSSL_PUT_ERROR(BN, BN_R_BIGNUM_TOO_LONG);
327
+ return NULL;
328
+ }
329
+ return bn_wexpand(bn, (bits+BN_BITS2-1)/BN_BITS2);
330
+ }
331
+
332
+ void bn_correct_top(BIGNUM *bn) {
333
+ BN_ULONG *ftl;
334
+ int tmp_top = bn->top;
335
+
336
+ if (tmp_top > 0) {
337
+ for (ftl = &(bn->d[tmp_top - 1]); tmp_top > 0; tmp_top--) {
338
+ if (*(ftl--)) {
339
+ break;
340
+ }
341
+ }
342
+ bn->top = tmp_top;
343
+ }
344
+ }
345
+
346
+ int BN_get_flags(const BIGNUM *bn, int flags) {
347
+ return bn->flags & flags;
348
+ }
349
+
350
+ void BN_set_flags(BIGNUM *bn, int flags) {
351
+ bn->flags |= flags;
352
+ }
@@ -0,0 +1,74 @@
1
+ /* Copyright (c) 2015, Google Inc.
2
+ *
3
+ * Permission to use, copy, modify, and/or distribute this software for any
4
+ * purpose with or without fee is hereby granted, provided that the above
5
+ * copyright notice and this permission notice appear in all copies.
6
+ *
7
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10
+ * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
+
15
+ #include <openssl/bn.h>
16
+
17
+ #include <openssl/bytestring.h>
18
+ #include <openssl/err.h>
19
+
20
+
21
+ int BN_cbs2unsigned(CBS *cbs, BIGNUM *ret) {
22
+ CBS child;
23
+ if (!CBS_get_asn1(cbs, &child, CBS_ASN1_INTEGER) ||
24
+ CBS_len(&child) == 0) {
25
+ OPENSSL_PUT_ERROR(BN, BN_R_BAD_ENCODING);
26
+ return 0;
27
+ }
28
+ if (CBS_data(&child)[0] & 0x80) {
29
+ OPENSSL_PUT_ERROR(BN, BN_R_NEGATIVE_NUMBER);
30
+ return 0;
31
+ }
32
+ /* INTEGERs must be minimal. */
33
+ if (CBS_data(&child)[0] == 0x00 &&
34
+ CBS_len(&child) > 1 &&
35
+ !(CBS_data(&child)[1] & 0x80)) {
36
+ OPENSSL_PUT_ERROR(BN, BN_R_BAD_ENCODING);
37
+ return 0;
38
+ }
39
+ return BN_bin2bn(CBS_data(&child), CBS_len(&child), ret) != NULL;
40
+ }
41
+
42
+ int BN_bn2cbb(CBB *cbb, const BIGNUM *bn) {
43
+ /* Negative numbers are unsupported. */
44
+ if (BN_is_negative(bn)) {
45
+ OPENSSL_PUT_ERROR(BN, BN_R_NEGATIVE_NUMBER);
46
+ return 0;
47
+ }
48
+
49
+ CBB child;
50
+ if (!CBB_add_asn1(cbb, &child, CBS_ASN1_INTEGER)) {
51
+ OPENSSL_PUT_ERROR(BN, BN_R_ENCODE_ERROR);
52
+ return 0;
53
+ }
54
+
55
+ /* The number must be padded with a leading zero if the high bit would
56
+ * otherwise be set (or |bn| is zero). */
57
+ if (BN_num_bits(bn) % 8 == 0 &&
58
+ !CBB_add_u8(&child, 0x00)) {
59
+ OPENSSL_PUT_ERROR(BN, BN_R_ENCODE_ERROR);
60
+ return 0;
61
+ }
62
+
63
+ uint8_t *out;
64
+ if (!CBB_add_space(&child, &out, BN_num_bytes(bn))) {
65
+ OPENSSL_PUT_ERROR(BN, BN_R_ENCODE_ERROR);
66
+ return 0;
67
+ }
68
+ BN_bn2bin(bn, out);
69
+ if (!CBB_flush(cbb)) {
70
+ OPENSSL_PUT_ERROR(BN, BN_R_ENCODE_ERROR);
71
+ return 0;
72
+ }
73
+ return 1;
74
+ }
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
+ <PropertyGroup Label="Globals">
4
+ <ProjectGuid>{06C8B12A-97C3-4326-B0AB-8C8004E94A76}</ProjectGuid>
5
+ <TargetName>bn_test</TargetName>
6
+ </PropertyGroup>
7
+ <ImportGroup Label="PropertySheets">
8
+ <Import Project="..\..\mk\WindowsTest.props" />
9
+ </ImportGroup>
10
+ <PropertyGroup Label="Configuration">
11
+ <OutDir>$(OutRootDir)\test\ring\crypto\bn\</OutDir>
12
+ </PropertyGroup>
13
+ <ItemGroup>
14
+ <ClCompile Include="bn_test.cc" />
15
+ </ItemGroup>
16
+ <ItemGroup>
17
+ <ProjectReference Include="..\libring.Windows.vcxproj">
18
+ <Project>{f4c0a1b6-5e09-41c8-8242-3e1f6762fb18}</Project>
19
+ </ProjectReference>
20
+ <ProjectReference Include="..\test\test.Windows.vcxproj">
21
+ <Project>{1dace503-6498-492d-b1ff-f9ee18624443}</Project>
22
+ </ProjectReference>
23
+ </ItemGroup>
24
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
25
+ </Project>