// // modexp_fpga_model_montgomery.cpp // ------------------------------------------------------------- // Montgomery modular multiplication and exponentiation routines // // Authors: Pavel Shatov // Copyright (c) 2017, NORDUnet A/S // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // - Redistributions of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // - Redistributions in binary form must reproduce the above copyright // notice, this list of conditions and the following disclaimer in the // documentation and/or other materials provided with the distribution. // // - Neither the name of the NORDUnet nor the names of its contributors may // be used to endorse or promote products derived from this software // without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS // IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED // TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A // PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED // TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // //---------------------------------------------------------------- // Headers //---------------------------------------------------------------- #include "modexp_fpga_model.h" #include "modexp_fpga_model_pe.h" #include "modexp_fpga_systolic.h" #include "modexp_fpga_model_montgomery.h" //---------------------------------------------------------------- // Montgomery modular multiplier //---------------------------------------------------------------- void montgomery_multiply(const FPGA_WORD *A, const FPGA_WORD *B, const FPGA_WORD *N, const FPGA_WORD *N_COEFF, FPGA_WORD *R, size_t len, bool reduce_only) //---------------------------------------------------------------- // // R = A * B * 2^-len mod N // // The high-level algorithm is: // // 1. AB = A * B // 2. Q = AB * N_COEFF // 3. QN = Q * N // 4. S = AB + QN // 5. SN = S - N // 6. R = (SN < 0) ? S : SN // 7. R = R >> len // //---------------------------------------------------------------- { size_t i; // counters FPGA_WORD AB[2 * MAX_OPERAND_WORDS]; // products FPGA_WORD Q [ MAX_OPERAND_WORDS]; // FPGA_WORD QN[2 * MAX_OPERAND_WORDS]; // bool select_s; // flag FPGA_WORD c_in_s; // 1-bit carry and borrow FPGA_WORD b_in_sn; // FPGA_WORD c_out_s; // FPGA_WORD b_out_sn; // FPGA_WORD S [2 * MAX_OPERAND_WORDS]; // final sum FPGA_WORD SN[2 * MAX_OPERAND_WORDS]; // final difference // copy twice larger A into AB if (reduce_only) for (i=0; i<(2*len); i++) AB[i] = A[i]; if (!reduce_only) multiply_systolic(A, B, AB, len, 2 * len); // AB = A * B multiply_systolic(N_COEFF, AB, Q, len, len); // Q = AB * N_COEFF multiply_systolic(Q, N, QN, len, 2 * len); // QN = Q * N // initialize 1-bit carry and borrow c_in_s = 0, b_in_sn = 0; // now it's time to simultaneously add and subtract for (i = 0; i < (2 * len); i++) { // current operand words FPGA_WORD QNi = QN[i]; FPGA_WORD Ni = (i < len) ? 0 : N[i-len]; // add, subtract pe_add(AB[i], QNi, c_in_s, &S[i], &c_out_s); pe_sub(S [i], Ni, b_in_sn, &SN[i], &b_out_sn); // propagate carry and borrow c_in_s = c_out_s; b_in_sn = b_out_sn; } // flag select the right result select_s = b_out_sn && !c_out_s; // copy product into output buffer for (i=0; i 0) ? 0 : 1, T2[word_cnt] = (word_cnt > 0) ? 0 : 1, P1[word_cnt] = A[word_cnt], P2[word_cnt] = A[word_cnt], P3[word_cnt] = A[word_cnt]; FPGA_WORD PP[MAX_OPERAND_WORDS]; // intermediate buffer for next power FPGA_WORD TP[MAX_OPERAND_WORDS]; // intermediate buffer for next result // scan all bits of the exponent for (bit_cnt=0; bit_cnt<(len * CHAR_BIT * sizeof(FPGA_WORD)); bit_cnt++) { for (word_cnt=0; word_cnt 0) ? 0 : 1; // do the math for (i=0; i<(2 * len * CHAR_BIT * sizeof(FPGA_WORD)); i++) { // clear carry and borrow carry_in = 0, borrow_in = 0; // calculate f1 = f << 1, f2 = f1 - n for (j=0; j> (sizeof(FPGA_WORD) * CHAR_BIT - 1); // | M <<= 1 FACTOR[j] <<= 1, FACTOR[j] |= carry_in; // | pe_sub(FACTOR[j], N[j], borrow_in, &FACTOR_N[j], &borrow_out); // MN = M - N carry_in = carry_out, borrow_in = borrow_out; // propagate carry & borrow } // obtain flag flag_keep_f = (borrow_out && !carry_out); // now select the right value for (j=0; j 0) ? 0 : 1; // NW = 1 pe_add(~N[i], nw, sum_c_in, &NN[i], &sum_c_out); // NN = ~N + nw sum_c_in = sum_c_out; // propagate carry } // R = 1 // B = 1 for (i=0; i 0) ? 0 : 1, B[i] = (i > 0) ? 0 : 1; // calculate T = R * NN // calculate B = B << 1 // calculate RB = R + B for (k=1; k<(len * sizeof(FPGA_WORD) * CHAR_BIT); k++) { // T = 0 for (i=0; i> (sizeof(FPGA_WORD) * CHAR_BIT - 1); B[j] <<= 1, B[j] |= shift_c_in; pe_add(R[j], B[j], sum_c_in, &RB[j], &sum_c_out); } // RR = R if (i == 0) RR[j] = R[j]; // T = R * NN pe_mul(R[j], NN[i], T[i+j], mul_c_in, &mul_s, &mul_c_out); T[i+j] = mul_s; // update flag if ((i + j) == word_index) flag_update_r = (T[i+j] & (1 << bit_index)) == (1 << bit_index); // propagate adder and shifter carries if (i == 0) { shift_c_in = shift_c_out; sum_c_in = sum_c_out; } // propagate multiplier carry mul_c_in = mul_c_out; } } // update r for (i=0; i