Path: blob/main/crypto/heimdal/include/crypto-headers.h
34859 views
#ifndef __crypto_header__1#define __crypto_header__23#ifndef PACKAGE_NAME4#error "need config.h"5#endif67#ifdef HAVE_OPENSSL89#define OPENSSL_DES_LIBDES_COMPATIBILITY1011#include <openssl/evp.h>12#include <openssl/des.h>13#include <openssl/rc4.h>14#include <openssl/rc2.h>15#include <openssl/md4.h>16#include <openssl/md5.h>17#include <openssl/sha.h>18#include <openssl/ui.h>19#include <openssl/rand.h>20#include <openssl/engine.h>21#include <openssl/pkcs12.h>22#include <openssl/pem.h>23#include <openssl/hmac.h>24#include <openssl/ec.h>25#include <openssl/ecdsa.h>26#include <openssl/ecdh.h>27#ifndef BN_is_negative28#define BN_set_negative(bn, flag) ((bn)->neg=(flag)?1:0)29#define BN_is_negative(bn) ((bn)->neg != 0)30#endif3132#else /* !HAVE_OPENSSL */3334#ifdef KRB535#include <krb5-types.h>36#endif3738#include <hcrypto/evp.h>39#include <hcrypto/des.h>40#include <hcrypto/md4.h>41#include <hcrypto/md5.h>42#include <hcrypto/sha.h>43#include <hcrypto/rc4.h>44#include <hcrypto/rc2.h>45#include <hcrypto/ui.h>46#include <hcrypto/rand.h>47#include <hcrypto/engine.h>48#include <hcrypto/pkcs12.h>49#include <hcrypto/hmac.h>50#include <hcrypto/ec.h>51#include <hcrypto/ecdsa.h>52#include <hcrypto/ecdh.h>5354#endif /* HAVE_OPENSSL */5556#endif /* __crypto_header__ */575859