rbnacl-libsodium 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/vendor/libsodium/ChangeLog +5 -0
- data/vendor/libsodium/README.markdown +4 -1
- data/vendor/libsodium/autogen.sh +0 -5
- data/vendor/libsodium/autom4te.cache/output.1 +14 -14
- data/vendor/libsodium/autom4te.cache/output.5 +14 -14
- data/vendor/libsodium/autom4te.cache/requests +868 -868
- data/vendor/libsodium/autom4te.cache/traces.1 +1 -1
- data/vendor/libsodium/builds/msvc/version.h +2 -2
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +10 -72
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +36 -216
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +10 -72
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +34 -214
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +10 -72
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +34 -214
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +10 -72
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +25 -205
- data/vendor/libsodium/configure +14 -14
- data/vendor/libsodium/configure.ac +5 -5
- data/vendor/libsodium/dist-build/msys2-win32.sh +3 -2
- data/vendor/libsodium/dist-build/msys2-win64.sh +3 -2
- data/vendor/libsodium/examples/sign.c +2 -2
- data/vendor/libsodium/examples/utils.h +3 -1
- data/vendor/libsodium/libsodium.vcxproj +7 -53
- data/vendor/libsodium/libsodium.vcxproj.filters +18 -152
- data/vendor/libsodium/msvc-scripts/process.bat +2 -2
- data/vendor/libsodium/src/libsodium/Makefile.am +6 -68
- data/vendor/libsodium/src/libsodium/Makefile.in +49 -724
- data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +2 -2
- data/vendor/libsodium/src/libsodium/{crypto_sign/ed25519 → crypto_core/curve25519}/ref10/base.h +0 -0
- data/vendor/libsodium/src/libsodium/{crypto_sign/ed25519 → crypto_core/curve25519}/ref10/base2.h +0 -0
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c +2233 -0
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.h +160 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +2 -2
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna32.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +2 -2
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +2 -2
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c +255 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/{curve25519_ref10.h → x25519_ref10.h} +0 -0
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +1 -2
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c +2 -4
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +1 -2
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +1 -2
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/vec/stream_chacha20_vec.c +16 -9
- data/vendor/libsodium/src/libsodium/include/sodium/export.h +2 -2
- data/vendor/libsodium/src/libsodium/include/sodium/utils.h +6 -4
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +12 -8
- data/vendor/libsodium/src/libsodium/sodium/core.c +9 -0
- data/vendor/libsodium/src/libsodium/sodium/runtime.c +32 -10
- data/vendor/libsodium/src/libsodium/sodium/utils.c +8 -8
- data/vendor/libsodium/test/default/auth.c +1 -1
- data/vendor/libsodium/test/default/box.c +16 -4
- data/vendor/libsodium/test/default/box2.c +7 -0
- data/vendor/libsodium/test/default/box7.c +18 -10
- data/vendor/libsodium/test/default/box8.c +1 -1
- data/vendor/libsodium/test/default/box_easy2.c +13 -0
- data/vendor/libsodium/test/default/onetimeauth.c +1 -0
- data/vendor/libsodium/test/default/pwhash_scrypt_ll.c +2 -2
- data/vendor/libsodium/test/default/verify1.c +1 -1
- metadata +9 -71
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/curve25519_ref10.c +0 -73
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe.h +0 -44
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_0_curve25519_ref10.c +0 -23
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_1_curve25519_ref10.c +0 -23
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_add_curve25519_ref10.c +0 -61
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_copy_curve25519_ref10.c +0 -33
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_cswap_curve25519_ref10.c +0 -77
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_frombytes_curve25519_ref10.c +0 -74
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_invert_curve25519_ref10.c +0 -18
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_mul121666_curve25519_ref10.c +0 -74
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_mul_curve25519_ref10.c +0 -257
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_sq_curve25519_ref10.c +0 -153
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_sub_curve25519_ref10.c +0 -61
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c +0 -123
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/montgomery.h +0 -140
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/pow225521.h +0 -160
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d.h +0 -1
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/d2.h +0 -1
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe.h +0 -56
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_0.c +0 -19
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_1.c +0 -19
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_add.c +0 -57
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_cmov.c +0 -63
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_copy.c +0 -29
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_frombytes.c +0 -73
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_invert.c +0 -14
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_isnegative.c +0 -16
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_isnonzero.c +0 -19
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_mul.c +0 -253
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_neg.c +0 -45
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_pow22523.c +0 -13
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq.c +0 -149
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq2.c +0 -160
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sub.c +0 -57
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_tobytes.c +0 -119
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge.h +0 -97
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_add.c +0 -11
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_add.h +0 -97
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_double_scalarmult.c +0 -138
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_frombytes.c +0 -50
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.c +0 -11
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_madd.h +0 -88
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.c +0 -11
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_msub.h +0 -88
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p2.c +0 -12
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p1p1_to_p3.c +0 -13
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_0.c +0 -8
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.c +0 -11
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p2_dbl.h +0 -73
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_0.c +0 -9
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_dbl.c +0 -12
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_cached.c +0 -17
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_to_p2.c +0 -12
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_p3_tobytes.c +0 -14
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_precomp_0.c +0 -8
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_scalarmult_base.c +0 -111
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.c +0 -11
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_sub.h +0 -97
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/ge_tobytes.c +0 -14
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow22523.h +0 -160
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/pow225521.h +0 -160
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc.h +0 -15
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc_muladd.c +0 -368
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sc_reduce.c +0 -275
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sqrtm1.h +0 -1
data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_sq_curve25519_ref10.c
DELETED
@@ -1,153 +0,0 @@
|
|
1
|
-
#include "fe.h"
|
2
|
-
#include "crypto_int64.h"
|
3
|
-
|
4
|
-
#ifndef HAVE_TI_MODE
|
5
|
-
|
6
|
-
/*
|
7
|
-
h = f * f
|
8
|
-
Can overlap h with f.
|
9
|
-
|
10
|
-
Preconditions:
|
11
|
-
|f| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
|
12
|
-
|
13
|
-
Postconditions:
|
14
|
-
|h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
|
15
|
-
*/
|
16
|
-
|
17
|
-
/*
|
18
|
-
See fe_mul.c for discussion of implementation strategy.
|
19
|
-
*/
|
20
|
-
|
21
|
-
void fe_sq(fe h,fe f)
|
22
|
-
{
|
23
|
-
crypto_int32 f0 = f[0];
|
24
|
-
crypto_int32 f1 = f[1];
|
25
|
-
crypto_int32 f2 = f[2];
|
26
|
-
crypto_int32 f3 = f[3];
|
27
|
-
crypto_int32 f4 = f[4];
|
28
|
-
crypto_int32 f5 = f[5];
|
29
|
-
crypto_int32 f6 = f[6];
|
30
|
-
crypto_int32 f7 = f[7];
|
31
|
-
crypto_int32 f8 = f[8];
|
32
|
-
crypto_int32 f9 = f[9];
|
33
|
-
crypto_int32 f0_2 = 2 * f0;
|
34
|
-
crypto_int32 f1_2 = 2 * f1;
|
35
|
-
crypto_int32 f2_2 = 2 * f2;
|
36
|
-
crypto_int32 f3_2 = 2 * f3;
|
37
|
-
crypto_int32 f4_2 = 2 * f4;
|
38
|
-
crypto_int32 f5_2 = 2 * f5;
|
39
|
-
crypto_int32 f6_2 = 2 * f6;
|
40
|
-
crypto_int32 f7_2 = 2 * f7;
|
41
|
-
crypto_int32 f5_38 = 38 * f5; /* 1.31*2^30 */
|
42
|
-
crypto_int32 f6_19 = 19 * f6; /* 1.31*2^30 */
|
43
|
-
crypto_int32 f7_38 = 38 * f7; /* 1.31*2^30 */
|
44
|
-
crypto_int32 f8_19 = 19 * f8; /* 1.31*2^30 */
|
45
|
-
crypto_int32 f9_38 = 38 * f9; /* 1.31*2^30 */
|
46
|
-
crypto_int64 f0f0 = f0 * (crypto_int64) f0;
|
47
|
-
crypto_int64 f0f1_2 = f0_2 * (crypto_int64) f1;
|
48
|
-
crypto_int64 f0f2_2 = f0_2 * (crypto_int64) f2;
|
49
|
-
crypto_int64 f0f3_2 = f0_2 * (crypto_int64) f3;
|
50
|
-
crypto_int64 f0f4_2 = f0_2 * (crypto_int64) f4;
|
51
|
-
crypto_int64 f0f5_2 = f0_2 * (crypto_int64) f5;
|
52
|
-
crypto_int64 f0f6_2 = f0_2 * (crypto_int64) f6;
|
53
|
-
crypto_int64 f0f7_2 = f0_2 * (crypto_int64) f7;
|
54
|
-
crypto_int64 f0f8_2 = f0_2 * (crypto_int64) f8;
|
55
|
-
crypto_int64 f0f9_2 = f0_2 * (crypto_int64) f9;
|
56
|
-
crypto_int64 f1f1_2 = f1_2 * (crypto_int64) f1;
|
57
|
-
crypto_int64 f1f2_2 = f1_2 * (crypto_int64) f2;
|
58
|
-
crypto_int64 f1f3_4 = f1_2 * (crypto_int64) f3_2;
|
59
|
-
crypto_int64 f1f4_2 = f1_2 * (crypto_int64) f4;
|
60
|
-
crypto_int64 f1f5_4 = f1_2 * (crypto_int64) f5_2;
|
61
|
-
crypto_int64 f1f6_2 = f1_2 * (crypto_int64) f6;
|
62
|
-
crypto_int64 f1f7_4 = f1_2 * (crypto_int64) f7_2;
|
63
|
-
crypto_int64 f1f8_2 = f1_2 * (crypto_int64) f8;
|
64
|
-
crypto_int64 f1f9_76 = f1_2 * (crypto_int64) f9_38;
|
65
|
-
crypto_int64 f2f2 = f2 * (crypto_int64) f2;
|
66
|
-
crypto_int64 f2f3_2 = f2_2 * (crypto_int64) f3;
|
67
|
-
crypto_int64 f2f4_2 = f2_2 * (crypto_int64) f4;
|
68
|
-
crypto_int64 f2f5_2 = f2_2 * (crypto_int64) f5;
|
69
|
-
crypto_int64 f2f6_2 = f2_2 * (crypto_int64) f6;
|
70
|
-
crypto_int64 f2f7_2 = f2_2 * (crypto_int64) f7;
|
71
|
-
crypto_int64 f2f8_38 = f2_2 * (crypto_int64) f8_19;
|
72
|
-
crypto_int64 f2f9_38 = f2 * (crypto_int64) f9_38;
|
73
|
-
crypto_int64 f3f3_2 = f3_2 * (crypto_int64) f3;
|
74
|
-
crypto_int64 f3f4_2 = f3_2 * (crypto_int64) f4;
|
75
|
-
crypto_int64 f3f5_4 = f3_2 * (crypto_int64) f5_2;
|
76
|
-
crypto_int64 f3f6_2 = f3_2 * (crypto_int64) f6;
|
77
|
-
crypto_int64 f3f7_76 = f3_2 * (crypto_int64) f7_38;
|
78
|
-
crypto_int64 f3f8_38 = f3_2 * (crypto_int64) f8_19;
|
79
|
-
crypto_int64 f3f9_76 = f3_2 * (crypto_int64) f9_38;
|
80
|
-
crypto_int64 f4f4 = f4 * (crypto_int64) f4;
|
81
|
-
crypto_int64 f4f5_2 = f4_2 * (crypto_int64) f5;
|
82
|
-
crypto_int64 f4f6_38 = f4_2 * (crypto_int64) f6_19;
|
83
|
-
crypto_int64 f4f7_38 = f4 * (crypto_int64) f7_38;
|
84
|
-
crypto_int64 f4f8_38 = f4_2 * (crypto_int64) f8_19;
|
85
|
-
crypto_int64 f4f9_38 = f4 * (crypto_int64) f9_38;
|
86
|
-
crypto_int64 f5f5_38 = f5 * (crypto_int64) f5_38;
|
87
|
-
crypto_int64 f5f6_38 = f5_2 * (crypto_int64) f6_19;
|
88
|
-
crypto_int64 f5f7_76 = f5_2 * (crypto_int64) f7_38;
|
89
|
-
crypto_int64 f5f8_38 = f5_2 * (crypto_int64) f8_19;
|
90
|
-
crypto_int64 f5f9_76 = f5_2 * (crypto_int64) f9_38;
|
91
|
-
crypto_int64 f6f6_19 = f6 * (crypto_int64) f6_19;
|
92
|
-
crypto_int64 f6f7_38 = f6 * (crypto_int64) f7_38;
|
93
|
-
crypto_int64 f6f8_38 = f6_2 * (crypto_int64) f8_19;
|
94
|
-
crypto_int64 f6f9_38 = f6 * (crypto_int64) f9_38;
|
95
|
-
crypto_int64 f7f7_38 = f7 * (crypto_int64) f7_38;
|
96
|
-
crypto_int64 f7f8_38 = f7_2 * (crypto_int64) f8_19;
|
97
|
-
crypto_int64 f7f9_76 = f7_2 * (crypto_int64) f9_38;
|
98
|
-
crypto_int64 f8f8_19 = f8 * (crypto_int64) f8_19;
|
99
|
-
crypto_int64 f8f9_38 = f8 * (crypto_int64) f9_38;
|
100
|
-
crypto_int64 f9f9_38 = f9 * (crypto_int64) f9_38;
|
101
|
-
crypto_int64 h0 = f0f0 +f1f9_76+f2f8_38+f3f7_76+f4f6_38+f5f5_38;
|
102
|
-
crypto_int64 h1 = f0f1_2+f2f9_38+f3f8_38+f4f7_38+f5f6_38;
|
103
|
-
crypto_int64 h2 = f0f2_2+f1f1_2 +f3f9_76+f4f8_38+f5f7_76+f6f6_19;
|
104
|
-
crypto_int64 h3 = f0f3_2+f1f2_2 +f4f9_38+f5f8_38+f6f7_38;
|
105
|
-
crypto_int64 h4 = f0f4_2+f1f3_4 +f2f2 +f5f9_76+f6f8_38+f7f7_38;
|
106
|
-
crypto_int64 h5 = f0f5_2+f1f4_2 +f2f3_2 +f6f9_38+f7f8_38;
|
107
|
-
crypto_int64 h6 = f0f6_2+f1f5_4 +f2f4_2 +f3f3_2 +f7f9_76+f8f8_19;
|
108
|
-
crypto_int64 h7 = f0f7_2+f1f6_2 +f2f5_2 +f3f4_2 +f8f9_38;
|
109
|
-
crypto_int64 h8 = f0f8_2+f1f7_4 +f2f6_2 +f3f5_4 +f4f4 +f9f9_38;
|
110
|
-
crypto_int64 h9 = f0f9_2+f1f8_2 +f2f7_2 +f3f6_2 +f4f5_2;
|
111
|
-
crypto_int64 carry0;
|
112
|
-
crypto_int64 carry1;
|
113
|
-
crypto_int64 carry2;
|
114
|
-
crypto_int64 carry3;
|
115
|
-
crypto_int64 carry4;
|
116
|
-
crypto_int64 carry5;
|
117
|
-
crypto_int64 carry6;
|
118
|
-
crypto_int64 carry7;
|
119
|
-
crypto_int64 carry8;
|
120
|
-
crypto_int64 carry9;
|
121
|
-
|
122
|
-
carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
|
123
|
-
carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
|
124
|
-
|
125
|
-
carry1 = (h1 + (crypto_int64) (1<<24)) >> 25; h2 += carry1; h1 -= carry1 << 25;
|
126
|
-
carry5 = (h5 + (crypto_int64) (1<<24)) >> 25; h6 += carry5; h5 -= carry5 << 25;
|
127
|
-
|
128
|
-
carry2 = (h2 + (crypto_int64) (1<<25)) >> 26; h3 += carry2; h2 -= carry2 << 26;
|
129
|
-
carry6 = (h6 + (crypto_int64) (1<<25)) >> 26; h7 += carry6; h6 -= carry6 << 26;
|
130
|
-
|
131
|
-
carry3 = (h3 + (crypto_int64) (1<<24)) >> 25; h4 += carry3; h3 -= carry3 << 25;
|
132
|
-
carry7 = (h7 + (crypto_int64) (1<<24)) >> 25; h8 += carry7; h7 -= carry7 << 25;
|
133
|
-
|
134
|
-
carry4 = (h4 + (crypto_int64) (1<<25)) >> 26; h5 += carry4; h4 -= carry4 << 26;
|
135
|
-
carry8 = (h8 + (crypto_int64) (1<<25)) >> 26; h9 += carry8; h8 -= carry8 << 26;
|
136
|
-
|
137
|
-
carry9 = (h9 + (crypto_int64) (1<<24)) >> 25; h0 += carry9 * 19; h9 -= carry9 << 25;
|
138
|
-
|
139
|
-
carry0 = (h0 + (crypto_int64) (1<<25)) >> 26; h1 += carry0; h0 -= carry0 << 26;
|
140
|
-
|
141
|
-
h[0] = h0;
|
142
|
-
h[1] = h1;
|
143
|
-
h[2] = h2;
|
144
|
-
h[3] = h3;
|
145
|
-
h[4] = h4;
|
146
|
-
h[5] = h5;
|
147
|
-
h[6] = h6;
|
148
|
-
h[7] = h7;
|
149
|
-
h[8] = h8;
|
150
|
-
h[9] = h9;
|
151
|
-
}
|
152
|
-
|
153
|
-
#endif
|
data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_sub_curve25519_ref10.c
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
#include "fe.h"
|
2
|
-
|
3
|
-
#ifndef HAVE_TI_MODE
|
4
|
-
|
5
|
-
/*
|
6
|
-
h = f - g
|
7
|
-
Can overlap h with f or g.
|
8
|
-
|
9
|
-
Preconditions:
|
10
|
-
|f| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
|
11
|
-
|g| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
|
12
|
-
|
13
|
-
Postconditions:
|
14
|
-
|h| bounded by 1.1*2^26,1.1*2^25,1.1*2^26,1.1*2^25,etc.
|
15
|
-
*/
|
16
|
-
|
17
|
-
void fe_sub(fe h,fe f,fe g)
|
18
|
-
{
|
19
|
-
crypto_int32 f0 = f[0];
|
20
|
-
crypto_int32 f1 = f[1];
|
21
|
-
crypto_int32 f2 = f[2];
|
22
|
-
crypto_int32 f3 = f[3];
|
23
|
-
crypto_int32 f4 = f[4];
|
24
|
-
crypto_int32 f5 = f[5];
|
25
|
-
crypto_int32 f6 = f[6];
|
26
|
-
crypto_int32 f7 = f[7];
|
27
|
-
crypto_int32 f8 = f[8];
|
28
|
-
crypto_int32 f9 = f[9];
|
29
|
-
crypto_int32 g0 = g[0];
|
30
|
-
crypto_int32 g1 = g[1];
|
31
|
-
crypto_int32 g2 = g[2];
|
32
|
-
crypto_int32 g3 = g[3];
|
33
|
-
crypto_int32 g4 = g[4];
|
34
|
-
crypto_int32 g5 = g[5];
|
35
|
-
crypto_int32 g6 = g[6];
|
36
|
-
crypto_int32 g7 = g[7];
|
37
|
-
crypto_int32 g8 = g[8];
|
38
|
-
crypto_int32 g9 = g[9];
|
39
|
-
crypto_int32 h0 = f0 - g0;
|
40
|
-
crypto_int32 h1 = f1 - g1;
|
41
|
-
crypto_int32 h2 = f2 - g2;
|
42
|
-
crypto_int32 h3 = f3 - g3;
|
43
|
-
crypto_int32 h4 = f4 - g4;
|
44
|
-
crypto_int32 h5 = f5 - g5;
|
45
|
-
crypto_int32 h6 = f6 - g6;
|
46
|
-
crypto_int32 h7 = f7 - g7;
|
47
|
-
crypto_int32 h8 = f8 - g8;
|
48
|
-
crypto_int32 h9 = f9 - g9;
|
49
|
-
h[0] = h0;
|
50
|
-
h[1] = h1;
|
51
|
-
h[2] = h2;
|
52
|
-
h[3] = h3;
|
53
|
-
h[4] = h4;
|
54
|
-
h[5] = h5;
|
55
|
-
h[6] = h6;
|
56
|
-
h[7] = h7;
|
57
|
-
h[8] = h8;
|
58
|
-
h[9] = h9;
|
59
|
-
}
|
60
|
-
|
61
|
-
#endif
|
data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/fe_tobytes_curve25519_ref10.c
DELETED
@@ -1,123 +0,0 @@
|
|
1
|
-
#include "fe.h"
|
2
|
-
|
3
|
-
#ifndef HAVE_TI_MODE
|
4
|
-
|
5
|
-
/*
|
6
|
-
Preconditions:
|
7
|
-
|h| bounded by 1.1*2^25,1.1*2^24,1.1*2^25,1.1*2^24,etc.
|
8
|
-
|
9
|
-
Write p=2^255-19; q=floor(h/p).
|
10
|
-
Basic claim: q = floor(2^(-255)(h + 19 2^(-25)h9 + 2^(-1))).
|
11
|
-
|
12
|
-
Proof:
|
13
|
-
Have |h|<=p so |q|<=1 so |19^2 2^(-255) q|<1/4.
|
14
|
-
Also have |h-2^230 h9|<2^230 so |19 2^(-255)(h-2^230 h9)|<1/4.
|
15
|
-
|
16
|
-
Write y=2^(-1)-19^2 2^(-255)q-19 2^(-255)(h-2^230 h9).
|
17
|
-
Then 0<y<1.
|
18
|
-
|
19
|
-
Write r=h-pq.
|
20
|
-
Have 0<=r<=p-1=2^255-20.
|
21
|
-
Thus 0<=r+19(2^-255)r<r+19(2^-255)2^255<=2^255-1.
|
22
|
-
|
23
|
-
Write x=r+19(2^-255)r+y.
|
24
|
-
Then 0<x<2^255 so floor(2^(-255)x) = 0 so floor(q+2^(-255)x) = q.
|
25
|
-
|
26
|
-
Have q+2^(-255)x = 2^(-255)(h + 19 2^(-25) h9 + 2^(-1))
|
27
|
-
so floor(2^(-255)(h + 19 2^(-25) h9 + 2^(-1))) = q.
|
28
|
-
*/
|
29
|
-
|
30
|
-
void fe_tobytes(unsigned char *s,fe h)
|
31
|
-
{
|
32
|
-
crypto_int32 h0 = h[0];
|
33
|
-
crypto_int32 h1 = h[1];
|
34
|
-
crypto_int32 h2 = h[2];
|
35
|
-
crypto_int32 h3 = h[3];
|
36
|
-
crypto_int32 h4 = h[4];
|
37
|
-
crypto_int32 h5 = h[5];
|
38
|
-
crypto_int32 h6 = h[6];
|
39
|
-
crypto_int32 h7 = h[7];
|
40
|
-
crypto_int32 h8 = h[8];
|
41
|
-
crypto_int32 h9 = h[9];
|
42
|
-
crypto_int32 q;
|
43
|
-
crypto_int32 carry0;
|
44
|
-
crypto_int32 carry1;
|
45
|
-
crypto_int32 carry2;
|
46
|
-
crypto_int32 carry3;
|
47
|
-
crypto_int32 carry4;
|
48
|
-
crypto_int32 carry5;
|
49
|
-
crypto_int32 carry6;
|
50
|
-
crypto_int32 carry7;
|
51
|
-
crypto_int32 carry8;
|
52
|
-
crypto_int32 carry9;
|
53
|
-
|
54
|
-
q = (19 * h9 + (((crypto_int32) 1) << 24)) >> 25;
|
55
|
-
q = (h0 + q) >> 26;
|
56
|
-
q = (h1 + q) >> 25;
|
57
|
-
q = (h2 + q) >> 26;
|
58
|
-
q = (h3 + q) >> 25;
|
59
|
-
q = (h4 + q) >> 26;
|
60
|
-
q = (h5 + q) >> 25;
|
61
|
-
q = (h6 + q) >> 26;
|
62
|
-
q = (h7 + q) >> 25;
|
63
|
-
q = (h8 + q) >> 26;
|
64
|
-
q = (h9 + q) >> 25;
|
65
|
-
|
66
|
-
/* Goal: Output h-(2^255-19)q, which is between 0 and 2^255-20. */
|
67
|
-
h0 += 19 * q;
|
68
|
-
/* Goal: Output h-2^255 q, which is between 0 and 2^255-20. */
|
69
|
-
|
70
|
-
carry0 = h0 >> 26; h1 += carry0; h0 -= carry0 << 26;
|
71
|
-
carry1 = h1 >> 25; h2 += carry1; h1 -= carry1 << 25;
|
72
|
-
carry2 = h2 >> 26; h3 += carry2; h2 -= carry2 << 26;
|
73
|
-
carry3 = h3 >> 25; h4 += carry3; h3 -= carry3 << 25;
|
74
|
-
carry4 = h4 >> 26; h5 += carry4; h4 -= carry4 << 26;
|
75
|
-
carry5 = h5 >> 25; h6 += carry5; h5 -= carry5 << 25;
|
76
|
-
carry6 = h6 >> 26; h7 += carry6; h6 -= carry6 << 26;
|
77
|
-
carry7 = h7 >> 25; h8 += carry7; h7 -= carry7 << 25;
|
78
|
-
carry8 = h8 >> 26; h9 += carry8; h8 -= carry8 << 26;
|
79
|
-
carry9 = h9 >> 25; h9 -= carry9 << 25;
|
80
|
-
/* h10 = carry9 */
|
81
|
-
|
82
|
-
/*
|
83
|
-
Goal: Output h0+...+2^255 h10-2^255 q, which is between 0 and 2^255-20.
|
84
|
-
Have h0+...+2^230 h9 between 0 and 2^255-1;
|
85
|
-
evidently 2^255 h10-2^255 q = 0.
|
86
|
-
Goal: Output h0+...+2^230 h9.
|
87
|
-
*/
|
88
|
-
|
89
|
-
s[0] = h0 >> 0;
|
90
|
-
s[1] = h0 >> 8;
|
91
|
-
s[2] = h0 >> 16;
|
92
|
-
s[3] = (h0 >> 24) | (h1 << 2);
|
93
|
-
s[4] = h1 >> 6;
|
94
|
-
s[5] = h1 >> 14;
|
95
|
-
s[6] = (h1 >> 22) | (h2 << 3);
|
96
|
-
s[7] = h2 >> 5;
|
97
|
-
s[8] = h2 >> 13;
|
98
|
-
s[9] = (h2 >> 21) | (h3 << 5);
|
99
|
-
s[10] = h3 >> 3;
|
100
|
-
s[11] = h3 >> 11;
|
101
|
-
s[12] = (h3 >> 19) | (h4 << 6);
|
102
|
-
s[13] = h4 >> 2;
|
103
|
-
s[14] = h4 >> 10;
|
104
|
-
s[15] = h4 >> 18;
|
105
|
-
s[16] = h5 >> 0;
|
106
|
-
s[17] = h5 >> 8;
|
107
|
-
s[18] = h5 >> 16;
|
108
|
-
s[19] = (h5 >> 24) | (h6 << 1);
|
109
|
-
s[20] = h6 >> 7;
|
110
|
-
s[21] = h6 >> 15;
|
111
|
-
s[22] = (h6 >> 23) | (h7 << 3);
|
112
|
-
s[23] = h7 >> 5;
|
113
|
-
s[24] = h7 >> 13;
|
114
|
-
s[25] = (h7 >> 21) | (h8 << 4);
|
115
|
-
s[26] = h8 >> 4;
|
116
|
-
s[27] = h8 >> 12;
|
117
|
-
s[28] = (h8 >> 20) | (h9 << 6);
|
118
|
-
s[29] = h9 >> 2;
|
119
|
-
s[30] = h9 >> 10;
|
120
|
-
s[31] = h9 >> 18;
|
121
|
-
}
|
122
|
-
|
123
|
-
#endif
|
@@ -1,140 +0,0 @@
|
|
1
|
-
|
2
|
-
/* qhasm: fe X2 */
|
3
|
-
|
4
|
-
/* qhasm: fe Z2 */
|
5
|
-
|
6
|
-
/* qhasm: fe X3 */
|
7
|
-
|
8
|
-
/* qhasm: fe Z3 */
|
9
|
-
|
10
|
-
/* qhasm: fe X4 */
|
11
|
-
|
12
|
-
/* qhasm: fe Z4 */
|
13
|
-
|
14
|
-
/* qhasm: fe X5 */
|
15
|
-
|
16
|
-
/* qhasm: fe Z5 */
|
17
|
-
|
18
|
-
/* qhasm: fe A */
|
19
|
-
|
20
|
-
/* qhasm: fe B */
|
21
|
-
|
22
|
-
/* qhasm: fe C */
|
23
|
-
|
24
|
-
/* qhasm: fe D */
|
25
|
-
|
26
|
-
/* qhasm: fe E */
|
27
|
-
|
28
|
-
/* qhasm: fe AA */
|
29
|
-
|
30
|
-
/* qhasm: fe BB */
|
31
|
-
|
32
|
-
/* qhasm: fe DA */
|
33
|
-
|
34
|
-
/* qhasm: fe CB */
|
35
|
-
|
36
|
-
/* qhasm: fe t0 */
|
37
|
-
|
38
|
-
/* qhasm: fe t1 */
|
39
|
-
|
40
|
-
/* qhasm: fe t2 */
|
41
|
-
|
42
|
-
/* qhasm: fe t3 */
|
43
|
-
|
44
|
-
/* qhasm: fe t4 */
|
45
|
-
|
46
|
-
/* qhasm: enter ladder */
|
47
|
-
|
48
|
-
/* qhasm: D = X3-Z3 */
|
49
|
-
/* asm 1: fe_sub(>D=fe#5,<X3=fe#3,<Z3=fe#4); */
|
50
|
-
/* asm 2: fe_sub(>D=tmp0,<X3=x3,<Z3=z3); */
|
51
|
-
fe_sub(tmp0,x3,z3);
|
52
|
-
|
53
|
-
/* qhasm: B = X2-Z2 */
|
54
|
-
/* asm 1: fe_sub(>B=fe#6,<X2=fe#1,<Z2=fe#2); */
|
55
|
-
/* asm 2: fe_sub(>B=tmp1,<X2=x2,<Z2=z2); */
|
56
|
-
fe_sub(tmp1,x2,z2);
|
57
|
-
|
58
|
-
/* qhasm: A = X2+Z2 */
|
59
|
-
/* asm 1: fe_add(>A=fe#1,<X2=fe#1,<Z2=fe#2); */
|
60
|
-
/* asm 2: fe_add(>A=x2,<X2=x2,<Z2=z2); */
|
61
|
-
fe_add(x2,x2,z2);
|
62
|
-
|
63
|
-
/* qhasm: C = X3+Z3 */
|
64
|
-
/* asm 1: fe_add(>C=fe#2,<X3=fe#3,<Z3=fe#4); */
|
65
|
-
/* asm 2: fe_add(>C=z2,<X3=x3,<Z3=z3); */
|
66
|
-
fe_add(z2,x3,z3);
|
67
|
-
|
68
|
-
/* qhasm: DA = D*A */
|
69
|
-
/* asm 1: fe_mul(>DA=fe#4,<D=fe#5,<A=fe#1); */
|
70
|
-
/* asm 2: fe_mul(>DA=z3,<D=tmp0,<A=x2); */
|
71
|
-
fe_mul(z3,tmp0,x2);
|
72
|
-
|
73
|
-
/* qhasm: CB = C*B */
|
74
|
-
/* asm 1: fe_mul(>CB=fe#2,<C=fe#2,<B=fe#6); */
|
75
|
-
/* asm 2: fe_mul(>CB=z2,<C=z2,<B=tmp1); */
|
76
|
-
fe_mul(z2,z2,tmp1);
|
77
|
-
|
78
|
-
/* qhasm: BB = B^2 */
|
79
|
-
/* asm 1: fe_sq(>BB=fe#5,<B=fe#6); */
|
80
|
-
/* asm 2: fe_sq(>BB=tmp0,<B=tmp1); */
|
81
|
-
fe_sq(tmp0,tmp1);
|
82
|
-
|
83
|
-
/* qhasm: AA = A^2 */
|
84
|
-
/* asm 1: fe_sq(>AA=fe#6,<A=fe#1); */
|
85
|
-
/* asm 2: fe_sq(>AA=tmp1,<A=x2); */
|
86
|
-
fe_sq(tmp1,x2);
|
87
|
-
|
88
|
-
/* qhasm: t0 = DA+CB */
|
89
|
-
/* asm 1: fe_add(>t0=fe#3,<DA=fe#4,<CB=fe#2); */
|
90
|
-
/* asm 2: fe_add(>t0=x3,<DA=z3,<CB=z2); */
|
91
|
-
fe_add(x3,z3,z2);
|
92
|
-
|
93
|
-
/* qhasm: assign x3 to t0 */
|
94
|
-
|
95
|
-
/* qhasm: t1 = DA-CB */
|
96
|
-
/* asm 1: fe_sub(>t1=fe#2,<DA=fe#4,<CB=fe#2); */
|
97
|
-
/* asm 2: fe_sub(>t1=z2,<DA=z3,<CB=z2); */
|
98
|
-
fe_sub(z2,z3,z2);
|
99
|
-
|
100
|
-
/* qhasm: X4 = AA*BB */
|
101
|
-
/* asm 1: fe_mul(>X4=fe#1,<AA=fe#6,<BB=fe#5); */
|
102
|
-
/* asm 2: fe_mul(>X4=x2,<AA=tmp1,<BB=tmp0); */
|
103
|
-
fe_mul(x2,tmp1,tmp0);
|
104
|
-
|
105
|
-
/* qhasm: E = AA-BB */
|
106
|
-
/* asm 1: fe_sub(>E=fe#6,<AA=fe#6,<BB=fe#5); */
|
107
|
-
/* asm 2: fe_sub(>E=tmp1,<AA=tmp1,<BB=tmp0); */
|
108
|
-
fe_sub(tmp1,tmp1,tmp0);
|
109
|
-
|
110
|
-
/* qhasm: t2 = t1^2 */
|
111
|
-
/* asm 1: fe_sq(>t2=fe#2,<t1=fe#2); */
|
112
|
-
/* asm 2: fe_sq(>t2=z2,<t1=z2); */
|
113
|
-
fe_sq(z2,z2);
|
114
|
-
|
115
|
-
/* qhasm: t3 = a24*E */
|
116
|
-
/* asm 1: fe_mul121666(>t3=fe#4,<E=fe#6); */
|
117
|
-
/* asm 2: fe_mul121666(>t3=z3,<E=tmp1); */
|
118
|
-
fe_mul121666(z3,tmp1);
|
119
|
-
|
120
|
-
/* qhasm: X5 = t0^2 */
|
121
|
-
/* asm 1: fe_sq(>X5=fe#3,<t0=fe#3); */
|
122
|
-
/* asm 2: fe_sq(>X5=x3,<t0=x3); */
|
123
|
-
fe_sq(x3,x3);
|
124
|
-
|
125
|
-
/* qhasm: t4 = BB+t3 */
|
126
|
-
/* asm 1: fe_add(>t4=fe#5,<BB=fe#5,<t3=fe#4); */
|
127
|
-
/* asm 2: fe_add(>t4=tmp0,<BB=tmp0,<t3=z3); */
|
128
|
-
fe_add(tmp0,tmp0,z3);
|
129
|
-
|
130
|
-
/* qhasm: Z5 = X1*t2 */
|
131
|
-
/* asm 1: fe_mul(>Z5=fe#4,x1,<t2=fe#2); */
|
132
|
-
/* asm 2: fe_mul(>Z5=z3,x1,<t2=z2); */
|
133
|
-
fe_mul(z3,x1,z2);
|
134
|
-
|
135
|
-
/* qhasm: Z4 = E*t4 */
|
136
|
-
/* asm 1: fe_mul(>Z4=fe#2,<E=fe#6,<t4=fe#5); */
|
137
|
-
/* asm 2: fe_mul(>Z4=z2,<E=tmp1,<t4=tmp0); */
|
138
|
-
fe_mul(z2,tmp1,tmp0);
|
139
|
-
|
140
|
-
/* qhasm: return */
|