]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/WolfSSL/ctaocrypt/src/fp_mul_comba_3.i
Rename the CyaSSL directory to WolfSSL
[freertos] / FreeRTOS-Plus / Source / WolfSSL / ctaocrypt / src / fp_mul_comba_3.i
1 /* fp_mul_comba_3.i
2  *
3  * Copyright (C) 2006-2014 wolfSSL Inc.
4  *
5  * This file is part of CyaSSL.
6  *
7  * CyaSSL is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * CyaSSL is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22
23 #ifdef TFM_MUL3
24 void fp_mul_comba3(fp_int *A, fp_int *B, fp_int *C)
25 {
26    fp_digit c0, c1, c2, at[6];
27
28    memcpy(at, A->dp, 3 * sizeof(fp_digit));
29    memcpy(at+3, B->dp, 3 * sizeof(fp_digit));
30    COMBA_START;
31
32    COMBA_CLEAR;
33    /* 0 */
34    MULADD(at[0], at[3]); 
35    COMBA_STORE(C->dp[0]);
36    /* 1 */
37    COMBA_FORWARD;
38    MULADD(at[0], at[4]);    MULADD(at[1], at[3]); 
39    COMBA_STORE(C->dp[1]);
40    /* 2 */
41    COMBA_FORWARD;
42    MULADD(at[0], at[5]);    MULADD(at[1], at[4]);    MULADD(at[2], at[3]); 
43    COMBA_STORE(C->dp[2]);
44    /* 3 */
45    COMBA_FORWARD;
46    MULADD(at[1], at[5]);    MULADD(at[2], at[4]); 
47    COMBA_STORE(C->dp[3]);
48    /* 4 */
49    COMBA_FORWARD;
50    MULADD(at[2], at[5]); 
51    COMBA_STORE(C->dp[4]);
52    COMBA_STORE2(C->dp[5]);
53    C->used = 6;
54    C->sign = A->sign ^ B->sign;
55    fp_clamp(C);
56    COMBA_FINI;
57 }
58 #endif