blob: 59438b6d7026089509e58c2444b4f5cec49ee859 (
plain) (
blame)
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
|
/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0"
*
* Written by Nir Drucker and Shay Gueron,
* AWS Cryptographic Algorithms Group.
* (ndrucker@amazon.com, gueron@amazon.com)
*/
#pragma once
#include "types.h"
#ifdef USE_OPENSSL
# include <openssl/bn.h>
# ifndef OPENSSL_NO_EC2M
# define USE_OPENSSL_GF2M 1
# endif
#endif
#ifdef USE_OPENSSL_GF2M
ret_t
ossl_add(OUT uint8_t res_bin[R_SIZE],
IN const uint8_t a_bin[R_SIZE],
IN const uint8_t b_bin[R_SIZE]);
// Perform cyclic product by using OpenSSL
ret_t
cyclic_product(OUT uint8_t res_bin[R_SIZE],
IN const uint8_t a_bin[R_SIZE],
IN const uint8_t b_bin[R_SIZE]);
#endif
|