/** * Copyright (c) 2017, Armando Faz . All rights reserved. * Institute of Computing. * University of Campinas, Brazil. * * 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 University of Campinas 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 OWNER 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. */ #ifndef FP448_X64_H #define FP448_X64_H #include #ifndef ALIGN_BYTES #define ALIGN_BYTES 32 #endif #ifndef ALIGN #ifdef __INTEL_COMPILER #define ALIGN __declspec(align(ALIGN_BYTES)) #else #define ALIGN __attribute__((aligned(ALIGN_BYTES))) #endif #endif #define SIZE_BYTES_FP448 56 #define NUM_WORDS_ELTFP448_X64 7 typedef ALIGN uint64_t EltFp448_1w_x64[NUM_WORDS_ELTFP448_X64]; typedef ALIGN uint64_t EltFp448_1w_Buffer_x64[2 * NUM_WORDS_ELTFP448_X64]; #ifdef __cplusplus extern "C" { #endif /* Integer Arithmetic */ void mul_448x448_integer_x64(uint64_t *const c, uint64_t *const a, uint64_t *const b); void sqr_448x448_integer_x64(uint64_t *const c, uint64_t *const a); void red_EltFp448_1w_x64(uint64_t *const c, uint64_t *const a); /* Prime Field Arithmetic */ void add_EltFp448_1w_x64(uint64_t *const c, uint64_t *const a, uint64_t *const b); void sub_EltFp448_1w_x64(uint64_t *const c, uint64_t *const a, uint64_t *const b); void mul_a24_EltFp448_1w_x64(uint64_t *const c, uint64_t *const a); void inv_EltFp448_1w_x64(uint64_t *const pC, uint64_t *const pA); void fred_EltFp448_1w_x64(uint64_t *const c); #ifdef __cplusplus } #endif #define mul_EltFp448_1w_x64(C, A, B) \ mul_448x448_integer_x64(buffer_1w, A, B); \ red_EltFp448_1w_x64(C, buffer_1w); #define sqr_EltFp448_1w_x64(A) \ sqr_448x448_integer_x64(buffer_1w, A); \ red_EltFp448_1w_x64(A, buffer_1w); #define copy_EltFp448_1w_x64(C, A) \ C[0] = A[0]; \ C[1] = A[1]; \ C[2] = A[2]; \ C[3] = A[3]; \ C[4] = A[4]; \ C[5] = A[5]; \ C[6] = A[6]; #endif /* FP448_X64_H */