2 * @file p448/f_generic.c
6 * Copyright (c) 2015-2016 Cryptography Research, Inc. \n
7 * Released under the MIT License. See LICENSE.txt for license information.
9 * @brief Generic arithmetic which has to be compiled per field.
11 * @warning This file was automatically generated in Python.
12 * Please do not edit it.
16 static const gf MODULUS = {FIELD_LITERAL(
17 0xffffffffffffff, 0xffffffffffffff, 0xffffffffffffff, 0xffffffffffffff, 0xfffffffffffffe, 0xffffffffffffff, 0xffffffffffffff, 0xffffffffffffff
21 const gf SQRT_MINUS_ONE = {FIELD_LITERAL(
26 /** Serialize to wire format. */
27 void gf_serialize (uint8_t serial[SER_BYTES], const gf x, int with_hibit) {
30 gf_strong_reduce(red);
31 if (!with_hibit) { assert(gf_hibit(red) == 0); }
33 unsigned int j=0, fill=0;
35 UNROLL for (unsigned int i=0; i<(with_hibit ? X_SER_BYTES : SER_BYTES); i++) {
36 if (fill < 8 && j < NLIMBS) {
37 buffer |= ((dword_t)red->limb[LIMBPERM(j)]) << fill;
38 fill += LIMB_PLACE_VALUE(LIMBPERM(j));
47 /** Return high bit of x = low bit of 2x mod p */
48 mask_t gf_hibit(const gf x) {
52 return -(y->limb[0]&1);
55 /** Return high bit of x = low bit of 2x mod p */
56 mask_t gf_lobit(const gf x) {
60 return -(y->limb[0]&1);
63 /** Deserialize from wire format; return -1 on success and 0 on failure. */
64 mask_t gf_deserialize (gf x, const uint8_t serial[SER_BYTES], int with_hibit, uint8_t hi_nmask) {
65 unsigned int j=0, fill=0;
68 const unsigned nbytes = with_hibit ? X_SER_BYTES : SER_BYTES;
69 UNROLL for (unsigned int i=0; i<NLIMBS; i++) {
70 UNROLL while (fill < LIMB_PLACE_VALUE(LIMBPERM(i)) && j < nbytes) {
71 uint8_t sj = serial[j];
72 if (j==nbytes-1) sj &= ~hi_nmask;
73 buffer |= ((dword_t)sj) << fill;
77 x->limb[LIMBPERM(i)] = (i<NLIMBS-1) ? buffer & LIMB_MASK(LIMBPERM(i)) : buffer;
78 fill -= LIMB_PLACE_VALUE(LIMBPERM(i));
79 buffer >>= LIMB_PLACE_VALUE(LIMBPERM(i));
80 scarry = (scarry + x->limb[LIMBPERM(i)] - MODULUS->limb[LIMBPERM(i)]) >> (8*sizeof(word_t));
82 mask_t succ = with_hibit ? -(mask_t)1 : ~gf_hibit(x);
83 return succ & word_is_zero(buffer) & ~word_is_zero(scarry);
86 /** Reduce to canonical form. */
87 void gf_strong_reduce (gf a) {
88 /* first, clear high */
89 gf_weak_reduce(a); /* Determined to have negligible perf impact. */
91 /* now the total is less than 2p */
93 /* compute total_value - p. No need to reduce mod p. */
95 for (unsigned int i=0; i<NLIMBS; i++) {
96 scarry = scarry + a->limb[LIMBPERM(i)] - MODULUS->limb[LIMBPERM(i)];
97 a->limb[LIMBPERM(i)] = scarry & LIMB_MASK(LIMBPERM(i));
98 scarry >>= LIMB_PLACE_VALUE(LIMBPERM(i));
101 /* uncommon case: it was >= p, so now scarry = 0 and this = x
102 * common case: it was < p, so now scarry = -1 and this = x - p + 2^255
103 * so let's add back in p. will carry back off the top for 2^255.
105 assert(word_is_zero(scarry) | word_is_zero(scarry+1));
107 word_t scarry_0 = scarry;
111 for (unsigned int i=0; i<NLIMBS; i++) {
112 carry = carry + a->limb[LIMBPERM(i)] + (scarry_0 & MODULUS->limb[LIMBPERM(i)]);
113 a->limb[LIMBPERM(i)] = carry & LIMB_MASK(LIMBPERM(i));
114 carry >>= LIMB_PLACE_VALUE(LIMBPERM(i));
117 assert(word_is_zero(carry + scarry_0));
120 /** Subtract two gf elements d=a-b */
121 void gf_sub (gf d, const gf a, const gf b) {
122 gf_sub_RAW ( d, a, b );
124 gf_weak_reduce ( d );
127 /** Add two field elements d = a+b */
128 void gf_add (gf d, const gf a, const gf b) {
129 gf_add_RAW ( d, a, b );
130 gf_weak_reduce ( d );
134 mask_t gf_eq(const gf a, const gf b) {
139 for (unsigned int i=0; i<NLIMBS; i++) {
140 ret |= c->limb[LIMBPERM(i)];
143 return word_is_zero(ret);