summaryrefslogtreecommitdiffstats
path: root/crypto/ec/curve448/arch_arm_32/f_impl.h
blob: af90c74f692a5d2328deaa620fbd940923bc94e4 (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
/*
 * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
 * Copyright 2014-2016 Cryptography Research, Inc.
 *
 * Licensed under the OpenSSL license (the "License").  You may not use
 * this file except in compliance with the License.  You can obtain a copy
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 *
 * Originally written by Mike Hamburg
 */

#define GF_HEADROOM 2
#define LIMB(x) (x##ull)&((1ull<<28)-1), (x##ull)>>28
#define FIELD_LITERAL(a,b,c,d,e,f,g,h) \
    {{LIMB(a),LIMB(b),LIMB(c),LIMB(d),LIMB(e),LIMB(f),LIMB(g),LIMB(h)}}

#define LIMB_PLACE_VALUE(i) 28

void gf_add_RAW(gf out, const gf a, const gf b)
{
    for (unsigned int i = 0; i < sizeof(*out) / sizeof(uint32xn_t); i++) {
        ((uint32xn_t *) out)[i] =
            ((const uint32xn_t *)a)[i] + ((const uint32xn_t *)b)[i];
    }
}

void gf_sub_RAW(gf out, const gf a, const gf b)
{
    for (unsigned int i = 0; i < sizeof(*out) / sizeof(uint32xn_t); i++) {
        ((uint32xn_t *) out)[i] =
            ((const uint32xn_t *)a)[i] - ((const uint32xn_t *)b)[i];
    }
}

void gf_bias(gf a, int amt)
{
    uint32_t co1 = ((1ull << 28) - 1) * amt, co2 = co1 - amt;
    uint32x4_t lo = { co1, co1, co1, co1 }, hi = {
    co2, co1, co1, co1};
    uint32x4_t *aa = (uint32x4_t *) a;

    aa[0] += lo;
    aa[1] += lo;
    aa[2] += hi;
    aa[3] += lo;
}

void gf_weak_reduce(gf a)
{
    uint64_t mask = (1ull << 28) - 1;
    uint64_t tmp = a->limb[15] >> 28;

    a->limb[8] += tmp;
    for (unsigned int i = 15; i > 0; i--) {
        a->limb[i] = (a->limb[i] & mask) + (a->limb[i - 1] >> 28);
    }
    a->limb[0] = (a->limb[0] & mask) + tmp;
}