]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/include/internal/bn_conf.h.in
Following the license change, modify the boilerplates in include/ and crypto/include/
[thirdparty/openssl.git] / crypto / include / internal / bn_conf.h.in
CommitLineData
9ab6fc59 1{- join("\n",map { "/* $_ */" } @autowarntext) -}
e0a65194
RS
2/*
3 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
dc193c9c 4 *
48f4ad77 5 * Licensed under the Apache License 2.0 (the "License"). You may not use
e0a65194
RS
6 * this file except in compliance with the License. You can obtain a copy
7 * in the file LICENSE in the source distribution or at
8 * https://www.openssl.org/source/license.html
dc193c9c
RS
9 */
10
11#ifndef HEADER_BN_CONF_H
12# define HEADER_BN_CONF_H
13
78c83078
DW
14/*
15 * The contents of this file are not used in the UEFI build, as
16 * both 32-bit and 64-bit builds are supported from a single run
17 * of the Configure script.
18 */
dc193c9c
RS
19
20/* Should we define BN_DIV2W here? */
21
22/* Only one for the following should be defined */
23{- $config{b64l} ? "#define" : "#undef" -} SIXTY_FOUR_BIT_LONG
24{- $config{b64} ? "#define" : "#undef" -} SIXTY_FOUR_BIT
25{- $config{b32} ? "#define" : "#undef" -} THIRTY_TWO_BIT
dc193c9c
RS
26
27#endif