ring-native 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/Gemfile +3 -0
- data/README.md +22 -0
- data/Rakefile +1 -0
- data/ext/ring/extconf.rb +29 -0
- data/lib/ring/native.rb +8 -0
- data/lib/ring/native/version.rb +5 -0
- data/ring-native.gemspec +25 -0
- data/vendor/ring/BUILDING.md +40 -0
- data/vendor/ring/Cargo.toml +43 -0
- data/vendor/ring/LICENSE +185 -0
- data/vendor/ring/Makefile +35 -0
- data/vendor/ring/PORTING.md +163 -0
- data/vendor/ring/README.md +113 -0
- data/vendor/ring/STYLE.md +197 -0
- data/vendor/ring/appveyor.yml +27 -0
- data/vendor/ring/build.rs +108 -0
- data/vendor/ring/crypto/aes/aes.c +1142 -0
- data/vendor/ring/crypto/aes/aes_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/aes/aes_test.cc +93 -0
- data/vendor/ring/crypto/aes/asm/aes-586.pl +2368 -0
- data/vendor/ring/crypto/aes/asm/aes-armv4.pl +1249 -0
- data/vendor/ring/crypto/aes/asm/aes-x86_64.pl +2246 -0
- data/vendor/ring/crypto/aes/asm/aesni-x86.pl +1318 -0
- data/vendor/ring/crypto/aes/asm/aesni-x86_64.pl +2084 -0
- data/vendor/ring/crypto/aes/asm/aesv8-armx.pl +675 -0
- data/vendor/ring/crypto/aes/asm/bsaes-armv7.pl +1364 -0
- data/vendor/ring/crypto/aes/asm/bsaes-x86_64.pl +1565 -0
- data/vendor/ring/crypto/aes/asm/vpaes-x86.pl +841 -0
- data/vendor/ring/crypto/aes/asm/vpaes-x86_64.pl +1116 -0
- data/vendor/ring/crypto/aes/internal.h +87 -0
- data/vendor/ring/crypto/aes/mode_wrappers.c +61 -0
- data/vendor/ring/crypto/bn/add.c +394 -0
- data/vendor/ring/crypto/bn/asm/armv4-mont.pl +694 -0
- data/vendor/ring/crypto/bn/asm/armv8-mont.pl +1503 -0
- data/vendor/ring/crypto/bn/asm/bn-586.pl +774 -0
- data/vendor/ring/crypto/bn/asm/co-586.pl +287 -0
- data/vendor/ring/crypto/bn/asm/rsaz-avx2.pl +1882 -0
- data/vendor/ring/crypto/bn/asm/x86-mont.pl +592 -0
- data/vendor/ring/crypto/bn/asm/x86_64-gcc.c +599 -0
- data/vendor/ring/crypto/bn/asm/x86_64-mont.pl +1393 -0
- data/vendor/ring/crypto/bn/asm/x86_64-mont5.pl +3507 -0
- data/vendor/ring/crypto/bn/bn.c +352 -0
- data/vendor/ring/crypto/bn/bn_asn1.c +74 -0
- data/vendor/ring/crypto/bn/bn_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/bn/bn_test.cc +1696 -0
- data/vendor/ring/crypto/bn/cmp.c +200 -0
- data/vendor/ring/crypto/bn/convert.c +433 -0
- data/vendor/ring/crypto/bn/ctx.c +311 -0
- data/vendor/ring/crypto/bn/div.c +594 -0
- data/vendor/ring/crypto/bn/exponentiation.c +1335 -0
- data/vendor/ring/crypto/bn/gcd.c +711 -0
- data/vendor/ring/crypto/bn/generic.c +1019 -0
- data/vendor/ring/crypto/bn/internal.h +316 -0
- data/vendor/ring/crypto/bn/montgomery.c +516 -0
- data/vendor/ring/crypto/bn/mul.c +888 -0
- data/vendor/ring/crypto/bn/prime.c +829 -0
- data/vendor/ring/crypto/bn/random.c +334 -0
- data/vendor/ring/crypto/bn/rsaz_exp.c +262 -0
- data/vendor/ring/crypto/bn/rsaz_exp.h +53 -0
- data/vendor/ring/crypto/bn/shift.c +276 -0
- data/vendor/ring/crypto/bytestring/bytestring_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/bytestring/bytestring_test.cc +421 -0
- data/vendor/ring/crypto/bytestring/cbb.c +399 -0
- data/vendor/ring/crypto/bytestring/cbs.c +227 -0
- data/vendor/ring/crypto/bytestring/internal.h +46 -0
- data/vendor/ring/crypto/chacha/chacha_generic.c +140 -0
- data/vendor/ring/crypto/chacha/chacha_vec.c +323 -0
- data/vendor/ring/crypto/chacha/chacha_vec_arm.S +1447 -0
- data/vendor/ring/crypto/chacha/chacha_vec_arm_generate.go +153 -0
- data/vendor/ring/crypto/cipher/cipher_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/cipher/e_aes.c +390 -0
- data/vendor/ring/crypto/cipher/e_chacha20poly1305.c +208 -0
- data/vendor/ring/crypto/cipher/internal.h +173 -0
- data/vendor/ring/crypto/cipher/test/aes_128_gcm_tests.txt +543 -0
- data/vendor/ring/crypto/cipher/test/aes_128_key_wrap_tests.txt +9 -0
- data/vendor/ring/crypto/cipher/test/aes_256_gcm_tests.txt +475 -0
- data/vendor/ring/crypto/cipher/test/aes_256_key_wrap_tests.txt +23 -0
- data/vendor/ring/crypto/cipher/test/chacha20_poly1305_old_tests.txt +422 -0
- data/vendor/ring/crypto/cipher/test/chacha20_poly1305_tests.txt +484 -0
- data/vendor/ring/crypto/cipher/test/cipher_test.txt +100 -0
- data/vendor/ring/crypto/constant_time_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/constant_time_test.c +304 -0
- data/vendor/ring/crypto/cpu-arm-asm.S +32 -0
- data/vendor/ring/crypto/cpu-arm.c +199 -0
- data/vendor/ring/crypto/cpu-intel.c +261 -0
- data/vendor/ring/crypto/crypto.c +151 -0
- data/vendor/ring/crypto/curve25519/asm/x25519-arm.S +2118 -0
- data/vendor/ring/crypto/curve25519/curve25519.c +4888 -0
- data/vendor/ring/crypto/curve25519/x25519_test.cc +128 -0
- data/vendor/ring/crypto/digest/md32_common.h +181 -0
- data/vendor/ring/crypto/ec/asm/p256-x86_64-asm.pl +2725 -0
- data/vendor/ring/crypto/ec/ec.c +193 -0
- data/vendor/ring/crypto/ec/ec_curves.c +61 -0
- data/vendor/ring/crypto/ec/ec_key.c +228 -0
- data/vendor/ring/crypto/ec/ec_montgomery.c +114 -0
- data/vendor/ring/crypto/ec/example_mul.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/ec/internal.h +243 -0
- data/vendor/ring/crypto/ec/oct.c +253 -0
- data/vendor/ring/crypto/ec/p256-64.c +1794 -0
- data/vendor/ring/crypto/ec/p256-x86_64-table.h +9548 -0
- data/vendor/ring/crypto/ec/p256-x86_64.c +509 -0
- data/vendor/ring/crypto/ec/simple.c +1007 -0
- data/vendor/ring/crypto/ec/util-64.c +183 -0
- data/vendor/ring/crypto/ec/wnaf.c +508 -0
- data/vendor/ring/crypto/ecdh/ecdh.c +155 -0
- data/vendor/ring/crypto/ecdsa/ecdsa.c +304 -0
- data/vendor/ring/crypto/ecdsa/ecdsa_asn1.c +193 -0
- data/vendor/ring/crypto/ecdsa/ecdsa_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/ecdsa/ecdsa_test.cc +327 -0
- data/vendor/ring/crypto/header_removed.h +17 -0
- data/vendor/ring/crypto/internal.h +495 -0
- data/vendor/ring/crypto/libring.Windows.vcxproj +101 -0
- data/vendor/ring/crypto/mem.c +98 -0
- data/vendor/ring/crypto/modes/asm/aesni-gcm-x86_64.pl +1045 -0
- data/vendor/ring/crypto/modes/asm/ghash-armv4.pl +517 -0
- data/vendor/ring/crypto/modes/asm/ghash-x86.pl +1393 -0
- data/vendor/ring/crypto/modes/asm/ghash-x86_64.pl +1741 -0
- data/vendor/ring/crypto/modes/asm/ghashv8-armx.pl +422 -0
- data/vendor/ring/crypto/modes/ctr.c +226 -0
- data/vendor/ring/crypto/modes/gcm.c +1206 -0
- data/vendor/ring/crypto/modes/gcm_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/modes/gcm_test.c +348 -0
- data/vendor/ring/crypto/modes/internal.h +299 -0
- data/vendor/ring/crypto/perlasm/arm-xlate.pl +170 -0
- data/vendor/ring/crypto/perlasm/readme +100 -0
- data/vendor/ring/crypto/perlasm/x86_64-xlate.pl +1164 -0
- data/vendor/ring/crypto/perlasm/x86asm.pl +292 -0
- data/vendor/ring/crypto/perlasm/x86gas.pl +263 -0
- data/vendor/ring/crypto/perlasm/x86masm.pl +200 -0
- data/vendor/ring/crypto/perlasm/x86nasm.pl +187 -0
- data/vendor/ring/crypto/poly1305/poly1305.c +331 -0
- data/vendor/ring/crypto/poly1305/poly1305_arm.c +301 -0
- data/vendor/ring/crypto/poly1305/poly1305_arm_asm.S +2015 -0
- data/vendor/ring/crypto/poly1305/poly1305_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/poly1305/poly1305_test.cc +80 -0
- data/vendor/ring/crypto/poly1305/poly1305_test.txt +52 -0
- data/vendor/ring/crypto/poly1305/poly1305_vec.c +892 -0
- data/vendor/ring/crypto/rand/asm/rdrand-x86_64.pl +75 -0
- data/vendor/ring/crypto/rand/internal.h +32 -0
- data/vendor/ring/crypto/rand/rand.c +189 -0
- data/vendor/ring/crypto/rand/urandom.c +219 -0
- data/vendor/ring/crypto/rand/windows.c +56 -0
- data/vendor/ring/crypto/refcount_c11.c +66 -0
- data/vendor/ring/crypto/refcount_lock.c +53 -0
- data/vendor/ring/crypto/refcount_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/refcount_test.c +58 -0
- data/vendor/ring/crypto/rsa/blinding.c +462 -0
- data/vendor/ring/crypto/rsa/internal.h +108 -0
- data/vendor/ring/crypto/rsa/padding.c +300 -0
- data/vendor/ring/crypto/rsa/rsa.c +450 -0
- data/vendor/ring/crypto/rsa/rsa_asn1.c +261 -0
- data/vendor/ring/crypto/rsa/rsa_impl.c +944 -0
- data/vendor/ring/crypto/rsa/rsa_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/rsa/rsa_test.cc +437 -0
- data/vendor/ring/crypto/sha/asm/sha-armv8.pl +436 -0
- data/vendor/ring/crypto/sha/asm/sha-x86_64.pl +2390 -0
- data/vendor/ring/crypto/sha/asm/sha256-586.pl +1275 -0
- data/vendor/ring/crypto/sha/asm/sha256-armv4.pl +735 -0
- data/vendor/ring/crypto/sha/asm/sha256-armv8.pl +14 -0
- data/vendor/ring/crypto/sha/asm/sha256-x86_64.pl +14 -0
- data/vendor/ring/crypto/sha/asm/sha512-586.pl +911 -0
- data/vendor/ring/crypto/sha/asm/sha512-armv4.pl +666 -0
- data/vendor/ring/crypto/sha/asm/sha512-armv8.pl +14 -0
- data/vendor/ring/crypto/sha/asm/sha512-x86_64.pl +14 -0
- data/vendor/ring/crypto/sha/sha1.c +271 -0
- data/vendor/ring/crypto/sha/sha256.c +204 -0
- data/vendor/ring/crypto/sha/sha512.c +355 -0
- data/vendor/ring/crypto/test/file_test.cc +326 -0
- data/vendor/ring/crypto/test/file_test.h +181 -0
- data/vendor/ring/crypto/test/malloc.cc +150 -0
- data/vendor/ring/crypto/test/scoped_types.h +95 -0
- data/vendor/ring/crypto/test/test.Windows.vcxproj +35 -0
- data/vendor/ring/crypto/test/test_util.cc +46 -0
- data/vendor/ring/crypto/test/test_util.h +41 -0
- data/vendor/ring/crypto/thread_none.c +55 -0
- data/vendor/ring/crypto/thread_pthread.c +165 -0
- data/vendor/ring/crypto/thread_test.Windows.vcxproj +25 -0
- data/vendor/ring/crypto/thread_test.c +200 -0
- data/vendor/ring/crypto/thread_win.c +282 -0
- data/vendor/ring/examples/checkdigest.rs +103 -0
- data/vendor/ring/include/openssl/aes.h +121 -0
- data/vendor/ring/include/openssl/arm_arch.h +129 -0
- data/vendor/ring/include/openssl/base.h +156 -0
- data/vendor/ring/include/openssl/bn.h +794 -0
- data/vendor/ring/include/openssl/buffer.h +18 -0
- data/vendor/ring/include/openssl/bytestring.h +235 -0
- data/vendor/ring/include/openssl/chacha.h +37 -0
- data/vendor/ring/include/openssl/cmac.h +76 -0
- data/vendor/ring/include/openssl/cpu.h +184 -0
- data/vendor/ring/include/openssl/crypto.h +43 -0
- data/vendor/ring/include/openssl/curve25519.h +88 -0
- data/vendor/ring/include/openssl/ec.h +225 -0
- data/vendor/ring/include/openssl/ec_key.h +129 -0
- data/vendor/ring/include/openssl/ecdh.h +110 -0
- data/vendor/ring/include/openssl/ecdsa.h +156 -0
- data/vendor/ring/include/openssl/err.h +201 -0
- data/vendor/ring/include/openssl/mem.h +101 -0
- data/vendor/ring/include/openssl/obj_mac.h +71 -0
- data/vendor/ring/include/openssl/opensslfeatures.h +68 -0
- data/vendor/ring/include/openssl/opensslv.h +18 -0
- data/vendor/ring/include/openssl/ossl_typ.h +18 -0
- data/vendor/ring/include/openssl/poly1305.h +51 -0
- data/vendor/ring/include/openssl/rand.h +70 -0
- data/vendor/ring/include/openssl/rsa.h +399 -0
- data/vendor/ring/include/openssl/thread.h +133 -0
- data/vendor/ring/include/openssl/type_check.h +71 -0
- data/vendor/ring/mk/Common.props +63 -0
- data/vendor/ring/mk/Windows.props +42 -0
- data/vendor/ring/mk/WindowsTest.props +18 -0
- data/vendor/ring/mk/appveyor.bat +62 -0
- data/vendor/ring/mk/bottom_of_makefile.mk +54 -0
- data/vendor/ring/mk/ring.mk +266 -0
- data/vendor/ring/mk/top_of_makefile.mk +214 -0
- data/vendor/ring/mk/travis.sh +40 -0
- data/vendor/ring/mk/update-travis-yml.py +229 -0
- data/vendor/ring/ring.sln +153 -0
- data/vendor/ring/src/aead.rs +682 -0
- data/vendor/ring/src/agreement.rs +248 -0
- data/vendor/ring/src/c.rs +129 -0
- data/vendor/ring/src/constant_time.rs +37 -0
- data/vendor/ring/src/der.rs +96 -0
- data/vendor/ring/src/digest.rs +690 -0
- data/vendor/ring/src/digest_tests.txt +57 -0
- data/vendor/ring/src/ecc.rs +28 -0
- data/vendor/ring/src/ecc_build.rs +279 -0
- data/vendor/ring/src/ecc_curves.rs +117 -0
- data/vendor/ring/src/ed25519_tests.txt +2579 -0
- data/vendor/ring/src/exe_tests.rs +46 -0
- data/vendor/ring/src/ffi.rs +29 -0
- data/vendor/ring/src/file_test.rs +187 -0
- data/vendor/ring/src/hkdf.rs +153 -0
- data/vendor/ring/src/hkdf_tests.txt +59 -0
- data/vendor/ring/src/hmac.rs +414 -0
- data/vendor/ring/src/hmac_tests.txt +97 -0
- data/vendor/ring/src/input.rs +312 -0
- data/vendor/ring/src/lib.rs +41 -0
- data/vendor/ring/src/pbkdf2.rs +265 -0
- data/vendor/ring/src/pbkdf2_tests.txt +113 -0
- data/vendor/ring/src/polyfill.rs +57 -0
- data/vendor/ring/src/rand.rs +28 -0
- data/vendor/ring/src/signature.rs +314 -0
- data/vendor/ring/third-party/NIST/README.md +9 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA1LongMsg.rsp +263 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA1Monte.rsp +309 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA1ShortMsg.rsp +267 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA224LongMsg.rsp +263 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA224Monte.rsp +309 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA224ShortMsg.rsp +267 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA256LongMsg.rsp +263 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA256Monte.rsp +309 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA256ShortMsg.rsp +267 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA384LongMsg.rsp +519 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA384Monte.rsp +309 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA384ShortMsg.rsp +523 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA512LongMsg.rsp +519 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA512Monte.rsp +309 -0
- data/vendor/ring/third-party/NIST/SHAVS/SHA512ShortMsg.rsp +523 -0
- data/vendor/ring/third-party/NIST/sha256sums.txt +1 -0
- 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>
|