2b7fc2aa951b655175ad805af9099ad1fd464dcc
[openssl.git] / crypto / ec / curve448 / field.h
1 /*
2  * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright 2014 Cryptography Research, Inc.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  *
10  * Originally written by Mike Hamburg
11  */
12
13 #ifndef __GF_H__
14 # define __GF_H__
15
16 # include "constant_time.h"
17 # include <string.h>
18 # include <assert.h>
19 # include "word.h"
20
21 # define NLIMBS (64/sizeof(word_t))
22 # define X_SER_BYTES 56
23 # define SER_BYTES 56
24
25 # if defined(__GNUC__) || defined(__clang__)
26 #  define INLINE_UNUSED __inline__ __attribute__((unused,always_inline))
27 #  define RESTRICT __restrict__
28 #  define ALIGNED __attribute__((aligned(32)))
29 # else
30 #  define INLINE_UNUSED ossl_inline
31 #  define RESTRICT
32 #  define ALIGNED
33 # endif
34
35 typedef struct gf_s {
36     word_t limb[NLIMBS];
37 } ALIGNED gf_s, gf[1];
38
39 /* RFC 7748 support */
40 # define X_PUBLIC_BYTES  X_SER_BYTES
41 # define X_PRIVATE_BYTES X_PUBLIC_BYTES
42 # define X_PRIVATE_BITS  448
43
44 static INLINE_UNUSED void gf_copy(gf out, const gf a)
45 {
46     *out = *a;
47 }
48
49 static INLINE_UNUSED void gf_add_RAW(gf out, const gf a, const gf b);
50 static INLINE_UNUSED void gf_sub_RAW(gf out, const gf a, const gf b);
51 static INLINE_UNUSED void gf_bias(gf inout, int amount);
52 static INLINE_UNUSED void gf_weak_reduce(gf inout);
53
54 void gf_strong_reduce(gf inout);
55 void gf_add(gf out, const gf a, const gf b);
56 void gf_sub(gf out, const gf a, const gf b);
57 void gf_mul(gf_s * RESTRICT out, const gf a, const gf b);
58 void gf_mulw_unsigned(gf_s * RESTRICT out, const gf a, uint32_t b);
59 void gf_sqr(gf_s * RESTRICT out, const gf a);
60 mask_t gf_isr(gf a, const gf x); /** a^2 x = 1, QNR, or 0 if x=0.  Return true if successful */
61 mask_t gf_eq(const gf x, const gf y);
62 mask_t gf_lobit(const gf x);
63 mask_t gf_hibit(const gf x);
64
65 void gf_serialize(uint8_t *serial, const gf x, int with_highbit);
66 mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit,
67                       uint8_t hi_nmask);
68
69 # include "f_impl.h"            /* Bring in the inline implementations */
70
71 # ifndef LIMBPERM
72 #  define LIMBPERM(i) (i)
73 # endif
74 # define LIMB_MASK(i) (((1)<<LIMB_PLACE_VALUE(i))-1)
75
76 static const gf ZERO = {{{0}}}, ONE = {{{1}}};
77
78 /* Square x, n times. */
79 static ossl_inline void gf_sqrn(gf_s * RESTRICT y, const gf x, int n)
80 {
81     gf tmp;
82     assert(n > 0);
83     if (n & 1) {
84         gf_sqr(y, x);
85         n--;
86     } else {
87         gf_sqr(tmp, x);
88         gf_sqr(y, tmp);
89         n -= 2;
90     }
91     for (; n; n -= 2) {
92         gf_sqr(tmp, y);
93         gf_sqr(y, tmp);
94     }
95 }
96
97 # define gf_add_nr gf_add_RAW
98
99 /* Subtract mod p.  Bias by 2 and don't reduce  */
100 static ossl_inline void gf_sub_nr(gf c, const gf a, const gf b)
101 {
102     gf_sub_RAW(c, a, b);
103     gf_bias(c, 2);
104     if (GF_HEADROOM < 3)
105         gf_weak_reduce(c);
106 }
107
108 /* Subtract mod p. Bias by amt but don't reduce.  */
109 static ossl_inline void gf_subx_nr(gf c, const gf a, const gf b, int amt)
110 {
111     gf_sub_RAW(c, a, b);
112     gf_bias(c, amt);
113     if (GF_HEADROOM < amt + 1)
114         gf_weak_reduce(c);
115 }
116
117 /* Mul by signed int.  Not constant-time WRT the sign of that int. */
118 static ossl_inline void gf_mulw(gf c, const gf a, int32_t w)
119 {
120     if (w > 0) {
121         gf_mulw_unsigned(c, a, w);
122     } else {
123         gf_mulw_unsigned(c, a, -w);
124         gf_sub(c, ZERO, c);
125     }
126 }
127
128 /* Constant time, x = is_z ? z : y */
129 static ossl_inline void gf_cond_sel(gf x, const gf y, const gf z, mask_t is_z)
130 {
131     constant_time_select_c448(x, y, z, sizeof(gf), is_z, 0);
132 }
133
134 /* Constant time, if (neg) x=-x; */
135 static ossl_inline void gf_cond_neg(gf x, mask_t neg)
136 {
137     gf y;
138     gf_sub(y, ZERO, x);
139     gf_cond_sel(x, x, y, neg);
140 }
141
142 /* Constant time, if (swap) (x,y) = (y,x); */
143 static ossl_inline void gf_cond_swap(gf x, gf_s * RESTRICT y, mask_t swap)
144 {
145     constant_time_cond_swap(x, y, sizeof(gf_s), swap);
146 }
147
148 #endif                          /* __GF_H__ */