]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/CyaSSL/ctaocrypt/src/fp_mul_comba_4.i
Final commit before tagging - cosmetic changes only.
[freertos] / FreeRTOS-Plus / Source / CyaSSL / ctaocrypt / src / fp_mul_comba_4.i
1 /* fp_mul_comba_4.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_MUL4
24 void fp_mul_comba4(fp_int *A, fp_int *B, fp_int *C)
25 {
26    fp_digit c0, c1, c2, at[8];
27
28    memcpy(at, A->dp, 4 * sizeof(fp_digit));
29    memcpy(at+4, B->dp, 4 * sizeof(fp_digit));
30    COMBA_START;
31
32    COMBA_CLEAR;
33    /* 0 */
34    MULADD(at[0], at[4]); 
35    COMBA_STORE(C->dp[0]);
36    /* 1 */
37    COMBA_FORWARD;
38    MULADD(at[0], at[5]);    MULADD(at[1], at[4]); 
39    COMBA_STORE(C->dp[1]);
40    /* 2 */
41    COMBA_FORWARD;
42    MULADD(at[0], at[6]);    MULADD(at[1], at[5]);    MULADD(at[2], at[4]); 
43    COMBA_STORE(C->dp[2]);
44    /* 3 */
45    COMBA_FORWARD;
46    MULADD(at[0], at[7]);    MULADD(at[1], at[6]);    MULADD(at[2], at[5]);    MULADD(at[3], at[4]); 
47    COMBA_STORE(C->dp[3]);
48    /* 4 */
49    COMBA_FORWARD;
50    MULADD(at[1], at[7]);    MULADD(at[2], at[6]);    MULADD(at[3], at[5]); 
51    COMBA_STORE(C->dp[4]);
52    /* 5 */
53    COMBA_FORWARD;
54    MULADD(at[2], at[7]);    MULADD(at[3], at[6]); 
55    COMBA_STORE(C->dp[5]);
56    /* 6 */
57    COMBA_FORWARD;
58    MULADD(at[3], at[7]); 
59    COMBA_STORE(C->dp[6]);
60    COMBA_STORE2(C->dp[7]);
61    C->used = 8;
62    C->sign = A->sign ^ B->sign;
63    fp_clamp(C);
64    COMBA_FINI;
65 }
66 #endif