2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-12-21 10:29:08 +00:00

Fix headers for rijndael.h

This commit is contained in:
Jay Berkenbilt 2024-12-13 08:09:38 -05:00
parent 0e65d9c246
commit ef9616775e

View File

@ -2,13 +2,8 @@
#define RIJNDAEL_H
#include <qpdf/qpdf-config.h>
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stddef.h>
#include <cstdint>
#include <cstddef>
unsigned int rijndaelSetupEncrypt(uint32_t* rk, const unsigned char* key, size_t keybits);
unsigned int rijndaelSetupDecrypt(uint32_t* rk, const unsigned char* key, size_t keybits);