Blame include/crypto/bn_conf.h.in

Packit Service 084de1
{- join("\n",map { "/* $_ */" } @autowarntext) -}
Packit Service 084de1
/*
Packit Service 084de1
 * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
Packit Service 084de1
 *
Packit Service 084de1
 * Licensed under the OpenSSL license (the "License").  You may not use
Packit Service 084de1
 * this file except in compliance with the License.  You can obtain a copy
Packit Service 084de1
 * in the file LICENSE in the source distribution or at
Packit Service 084de1
 * https://www.openssl.org/source/license.html
Packit Service 084de1
 */
Packit Service 084de1
Packit Service 084de1
#ifndef OSSL_CRYPTO_BN_CONF_H
Packit Service 084de1
# define OSSL_CRYPTO_BN_CONF_H
Packit Service 084de1
Packit Service 084de1
/*
Packit Service 084de1
 * The contents of this file are not used in the UEFI build, as
Packit Service 084de1
 * both 32-bit and 64-bit builds are supported from a single run
Packit Service 084de1
 * of the Configure script.
Packit Service 084de1
 */
Packit Service 084de1
Packit Service 084de1
/* Should we define BN_DIV2W here? */
Packit Service 084de1
Packit Service 084de1
/* Only one for the following should be defined */
Packit Service 084de1
{- $config{b64l} ? "#define" : "#undef" -} SIXTY_FOUR_BIT_LONG
Packit Service 084de1
{- $config{b64}  ? "#define" : "#undef" -} SIXTY_FOUR_BIT
Packit Service 084de1
{- $config{b32}  ? "#define" : "#undef" -} THIRTY_TWO_BIT
Packit Service 084de1
Packit Service 084de1
#endif