1 #ifndef __crypto_headers_h__
2 #define __crypto_headers_h__
4 #include <krb5-types.h>
6 #ifndef OPENSSL_DES_LIBDES_COMPATIBILITY
7 #define OPENSSL_DES_LIBDES_COMPATIBILITY
9 #include <openssl/evp.h>
10 #include <openssl/des.h>
11 #include <openssl/md2.h>
12 #include <openssl/md4.h>
13 #include <openssl/md5.h>
14 #include <openssl/sha.h>
15 #include <openssl/rc4.h>
16 #include <openssl/rc2.h>
17 #include <openssl/aes.h>
18 #include <openssl/ui.h>
19 #include <openssl/rand.h>
20 #include <openssl/engine.h>
21 #include <openssl/pkcs12.h>
22 #include <openssl/hmac.h>
23 #ifndef BN_is_negative
24 #define BN_set_negative(bn, flag) ((bn)->neg=(flag)?1:0)
25 #define BN_is_negative(bn) ((bn)->neg != 0)
27 #endif /* __crypto_headers_h__ */