From 6e7a315eb67cb6c113cf37e1d66c4f11a51a2b3e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 18:29:51 +0200 Subject: Adding upstream version 2.06. Signed-off-by: Daniel Baumann --- grub-core/lib/libgcrypt_wrap/cipher_wrap.h | 77 ++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 grub-core/lib/libgcrypt_wrap/cipher_wrap.h (limited to 'grub-core/lib/libgcrypt_wrap/cipher_wrap.h') diff --git a/grub-core/lib/libgcrypt_wrap/cipher_wrap.h b/grub-core/lib/libgcrypt_wrap/cipher_wrap.h new file mode 100644 index 0000000..4283549 --- /dev/null +++ b/grub-core/lib/libgcrypt_wrap/cipher_wrap.h @@ -0,0 +1,77 @@ +/* + * GRUB -- GRand Unified Bootloader + * Copyright (C) 2009 Free Software Foundation, Inc. + * + * GRUB is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * GRUB is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GRUB. If not, see . + */ + +#ifndef GRUB_GCRY_WRAP_HEADER +#define GRUB_GCRY_WRAP_HEADER 1 + +#include +#include +#include +#include +#include + +#include + +#define _gcry_mpi_invm gcry_mpi_invm +#define _gcry_mpi_set gcry_mpi_set +#define _gcry_mpi_set_ui gcry_mpi_set_ui +#define size_t grub_size_t + +#undef __GNU_LIBRARY__ +#define __GNU_LIBRARY__ 1 + +#define U64_C(c) (c ## ULL) + +#define PUBKEY_FLAG_NO_BLINDING (1 << 0) + +#define CIPHER_INFO_NO_WEAK_KEY 1 + +#define HAVE_U64_TYPEDEF 1 + +/* Selftests are in separate modules. */ +static inline char * +selftest (void) +{ + return NULL; +} + +static inline int +_gcry_fips_mode (void) +{ + return 0; +} + +#define assert gcry_assert + +#ifdef GRUB_UTIL + +#define memset grub_memset + +#endif + + +#define DBG_CIPHER 0 + +#include +#pragma GCC diagnostic ignored "-Wredundant-decls" +#include +#include + +#define gcry_mpi_mod _gcry_mpi_mod + +#endif -- cgit v1.2.3