-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneric.c
133 lines (116 loc) · 3.95 KB
/
generic.c
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
/* Copyright 2008-2019 Douglas Wikstrom
*
* This file is part of Verificatum Elliptic Curve library (VEC).
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <time.h>
#include <gmp.h>
#include "vec.h"
#include "generic_macros.h"
#include "jmul_template.h"
#include "jmulsw_template.h"
#include "jsmul_template.h"
#include "jfmul_template.h"
void
vec_jdbl_generic_inner(vec_scratch_mpz_t scratch,
mpz_t X3, mpz_t Y3, mpz_t Z3,
vec_curve *curve,
mpz_t X1, mpz_t Y1, mpz_t Z1);
void
vec_jadd_generic_inner(vec_scratch_mpz_t scratch,
mpz_t X3, mpz_t Y3, mpz_t Z3,
vec_curve *curve,
mpz_t X1, mpz_t Y1, mpz_t Z1,
mpz_t X2, mpz_t Y2, mpz_t Z2);
/* Naive version of multiplication. Only used during development.
void
vec_jmul_generic(mpz_t RX, mpz_t RY, mpz_t RZ,
vec_curve *curve,
mpz_t X, mpz_t Y, mpz_t Z,
mpz_t scalar)
{
vec_jmul_generic_inner(RX, RY, RZ, curve, X, Y, Z, scalar);
}
*/
void
vec_jmulsw_generic(mpz_t RX, mpz_t RY, mpz_t RZ,
vec_curve *curve,
mpz_t X, mpz_t Y, mpz_t Z,
mpz_t scalar)
{
vec_jmulsw_generic_inner(RX, RY, RZ, curve, X, Y, Z, scalar);
}
void
vec_jsmul_generic(mpz_t RX, mpz_t RY, mpz_t RZ,
vec_curve *curve,
mpz_t *X, mpz_t *Y, mpz_t *Z,
mpz_t *scalars,
size_t len)
{
vec_jsmul_generic_inner(RX, RY, RZ, curve, X, Y, Z, scalars, len);
}
vec_jfmul_tab_ptr
vec_jfmul_precomp_generic(vec_curve *curve,
mpz_t X, mpz_t Y, mpz_t Z,
size_t len)
{
vec_jfmul_tab_ptr ptr;
ptr.generic =
(vec_jfmul_tab_generic_inner*)
malloc(sizeof(vec_jfmul_tab_generic_inner));
vec_jfmul_init_generic_inner(ptr.generic, curve, len);
vec_jfmul_prcmp_generic_inner(curve, ptr.generic, X, Y, Z);
return ptr;
}
void
vec_jfmul_generic(mpz_t RX, mpz_t RY, mpz_t RZ,
vec_curve *curve,
vec_jfmul_tab_ptr ptr,
mpz_t scalar)
{
vec_jfmul_cmp_generic_inner(RX, RY, RZ, curve, ptr.generic, scalar);
}
void
vec_jfmul_free_generic(vec_jfmul_tab_ptr ptr)
{
vec_jfmul_clear_free_generic_inner(ptr.generic);
}
void
vec_jdbl_generic(vec_scratch_mpz_t scratch,
mpz_t X3, mpz_t Y3, mpz_t Z3,
vec_curve *curve,
mpz_t X1, mpz_t Y1, mpz_t Z1)
{
vec_jdbl_generic_inner(scratch, X3, Y3, Z3, curve, X1, Y1, Z1);
}
void
vec_jadd_generic(vec_scratch_mpz_t scratch,
mpz_t X3, mpz_t Y3, mpz_t Z3,
vec_curve *curve,
mpz_t X1, mpz_t Y1, mpz_t Z1,
mpz_t X2, mpz_t Y2, mpz_t Z2)
{
vec_jadd_generic_inner(scratch, X3, Y3, Z3, curve, X1, Y1, Z1, X2, Y2, Z2);
}