kernel: maintain stack alignment
[minix3.git] / include / heimdal / crypto-headers.h
blob7e29410b33b10c6d9052c7178e8fe2922f6d7317
1 #ifndef __crypto_headers_h__
2 #define __crypto_headers_h__
3 #ifdef KRB5
4 #include <krb5-types.h>
5 #endif
6 #ifndef OPENSSL_DES_LIBDES_COMPATIBILITY
7 #define OPENSSL_DES_LIBDES_COMPATIBILITY
8 #endif
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)
26 #endif
27 #endif /* __crypto_headers_h__ */