aboutsummaryrefslogtreecommitdiff
path: root/core/crypto/_weierstrass/scalar_mul.odin
blob: ac0d81a2625ce9541b555e4f6f06e39e9e13d6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package _weierstrass

import "core:crypto"
@(require) import subtle "core:crypto/_subtle"

pt_scalar_mul :: proc "contextless" (
	p, a: ^$T,
	sc: ^$S,
	unsafe_is_vartime: bool = false,
) {
	when T == Point_p256r1 && S == Scalar_p256r1 {
		SC_SZ :: SC_SIZE_P256R1
	} else when T == Point_p384r1 && S == Scalar_p384r1 {
		SC_SZ :: SC_SIZE_P384R1
	} else {
		#panic("weierstrass: invalid curve")
	}

	b: [SC_SZ]byte = ---
	sc_bytes(b[:], sc)

	pt_scalar_mul_bytes(p, a, b[:], unsafe_is_vartime)

	if !unsafe_is_vartime {
		crypto.zero_explicit(&b, size_of(b))
	}
}

pt_scalar_mul_bytes :: proc "contextless" (
	p, a: ^$T,
	sc: []byte,
	unsafe_is_vartime: bool = false,
) {
	when T == Point_p256r1 {
		p_tbl: Multiply_Table_p256r1 = ---
		q, tmp: Point_p256r1 = ---, ---
		SC_SZ :: SC_SIZE_P256R1
	} else when T == Point_p384r1 {
		p_tbl: Multiply_Table_p384r1 = ---
		q, tmp: Point_p384r1 = ---, ---
		SC_SZ :: SC_SIZE_P384R1
	} else {
		#panic("weierstrass: invalid curve")
	}

	assert_contextless(len(sc) == SC_SZ, "weierstrass: invalid scalar size")
	mul_tbl_set(&p_tbl, a, unsafe_is_vartime)

	pt_identity(&q)
	for limb_byte, i in sc {
		hi, lo := (limb_byte >> 4) & 0x0f, limb_byte & 0x0f

		if i != 0 {
			pt_double(&q, &q)
			pt_double(&q, &q)
			pt_double(&q, &q)
			pt_double(&q, &q)
		}
		mul_tbl_lookup_add(&q, &tmp, &p_tbl, u64(hi), unsafe_is_vartime)

		pt_double(&q, &q)
		pt_double(&q, &q)
		pt_double(&q, &q)
		pt_double(&q, &q)
		mul_tbl_lookup_add(&q, &tmp, &p_tbl, u64(lo), unsafe_is_vartime)
	}

	pt_set(p, &q)

	if !unsafe_is_vartime {
		crypto.zero_explicit(&p_tbl, size_of(p_tbl))
		pt_clear_vec([]^T{&q, &tmp})
	}
}

when crypto.COMPACT_IMPLS == true {
	pt_scalar_mul_generator :: proc "contextless" (
		p: ^$T,
		sc: ^$S,
		unsafe_is_vartime: bool = false,
	) {
		g: T
		pt_generator(&g)

		pt_scalar_mul(p, &g, sc, unsafe_is_vartime)
	}
} else {
	pt_scalar_mul_generator :: proc "contextless" (
		p: ^$T,
		sc: ^$S,
		unsafe_is_vartime: bool = false,
	) {
		when T == Point_p256r1 && S == Scalar_p256r1 {
			p_tbl_hi := &Gen_Multiply_Table_p256r1_hi
			p_tbl_lo := &Gen_Multiply_Table_p256r1_lo
			tmp: Point_p256r1 = ---
			SC_SZ :: SC_SIZE_P256R1
		} else when T == Point_p384r1 && S == Scalar_p384r1 {
			p_tbl_hi := &Gen_Multiply_Table_p384r1_hi
			p_tbl_lo := &Gen_Multiply_Table_p384r1_lo
			tmp: Point_p384r1 = ---
			SC_SZ :: SC_SIZE_P384R1
		} else {
			#panic("weierstrass: invalid curve")
		}

		b: [SC_SZ]byte
		sc_bytes(b[:], sc)

		pt_identity(p)
		for limb_byte, i in b {
			hi, lo := (limb_byte >> 4) & 0x0f, limb_byte & 0x0f
			mul_affine_tbl_lookup_add(p, &tmp, &p_tbl_hi[i], u64(hi), unsafe_is_vartime)
			mul_affine_tbl_lookup_add(p, &tmp, &p_tbl_lo[i], u64(lo), unsafe_is_vartime)
		}

		if !unsafe_is_vartime {
			crypto.zero_explicit(&b, size_of(b))
			pt_clear(&tmp)
		}
	}
}

@(private="file")
Multiply_Table_p256r1 :: [15]Point_p256r1
@(private="file")
Multiply_Table_p384r1 :: [15]Point_p384r1

@(private="file")
mul_tbl_set :: proc "contextless"(
	tbl: ^$T,
	point: ^$U,
	unsafe_is_vartime: bool,
) {
	when T == Multiply_Table_p256r1 && U == Point_p256r1{
		tmp: Point_p256r1
	} else when T == Multiply_Table_p384r1 && U == Point_p384r1{
		tmp: Point_p384r1
	} else {
		#panic("weierstrass: invalid curve")
	}

	pt_set(&tmp, point)
	pt_set(&tbl[0], &tmp)
	for i in 1 ..<15 {
		pt_add(&tmp, &tmp, point)
		pt_set(&tbl[i], &tmp)
	}

	if !unsafe_is_vartime {
		pt_clear(&tmp)
	}
}

@(private="file")
mul_tbl_lookup_add :: proc "contextless" (
	point, tmp: ^$T,
	tbl: ^$U,
	idx: u64,
	unsafe_is_vartime: bool,
 ) {
	if unsafe_is_vartime {
		switch idx {
		case 0:
		case:
			pt_add(point, point, &tbl[idx - 1])
		}
		return
	}

	pt_identity(tmp)
	for i in u64(1)..<16 {
		ctrl := subtle.eq(i, idx)
		pt_cond_select(tmp, tmp, &tbl[i - 1], int(ctrl))
	}

	pt_add(point, point, tmp)
}

when crypto.COMPACT_IMPLS == false {
	@(private)
	Affine_Point_p256r1 :: struct {
		x: Field_Element_p256r1,
		y: Field_Element_p256r1,
	}

	@(private)
	Affine_Point_p384r1 :: struct {
		x: Field_Element_p384r1,
		y: Field_Element_p384r1,
	}

	@(private="file")
	mul_affine_tbl_lookup_add :: proc "contextless" (
		point, tmp: ^$T,
		tbl: ^$U,
		idx: u64,
		unsafe_is_vartime: bool,
	) {
		if unsafe_is_vartime {
			switch idx {
			case 0:
			case:
				pt_add_mixed(point, point, &tbl[idx - 1].x, &tbl[idx - 1].y)
			}
			return
		}

		pt_identity(tmp)
		for i in u64(1)..<16 {
			ctrl := int(subtle.eq(i, idx))
			fe_cond_select(&tmp.x, &tmp.x, &tbl[i - 1].x, ctrl)
			fe_cond_select(&tmp.y, &tmp.y, &tbl[i - 1].y, ctrl)
		}

		// The mixed addition formula assumes that the addend is not
		// the neutral element.  Do the addition regardless, and then
		// conditionally select the right result.
		pt_add_mixed(tmp, point, &tmp.x, &tmp.y)

		ctrl := subtle.u64_is_non_zero(idx)
		pt_cond_select(point, point, tmp, int(ctrl))
	}
}