2002-09-16 21:10:29 +00:00
|
|
|
/* $FreeBSD$ */
|
|
|
|
#ifndef __crypto_headers_h__
|
|
|
|
#define __crypto_headers_h__
|
2012-03-22 08:48:42 +00:00
|
|
|
|
2008-05-07 13:53:12 +00:00
|
|
|
#include <openssl/evp.h>
|
2002-09-16 21:10:29 +00:00
|
|
|
#include <openssl/des.h>
|
|
|
|
#include <openssl/rc4.h>
|
2012-03-22 08:48:42 +00:00
|
|
|
#include <openssl/rc2.h>
|
2002-09-16 21:10:29 +00:00
|
|
|
#include <openssl/md4.h>
|
|
|
|
#include <openssl/md5.h>
|
|
|
|
#include <openssl/sha.h>
|
2008-05-07 13:53:12 +00:00
|
|
|
#include <openssl/ui.h>
|
|
|
|
#include <openssl/rand.h>
|
|
|
|
#include <openssl/engine.h>
|
|
|
|
#include <openssl/pkcs12.h>
|
2012-03-22 08:48:42 +00:00
|
|
|
#include <openssl/pem.h>
|
2008-05-07 13:53:12 +00:00
|
|
|
#include <openssl/hmac.h>
|
2012-03-22 08:48:42 +00:00
|
|
|
#include <openssl/ec.h>
|
|
|
|
#include <openssl/ecdsa.h>
|
|
|
|
#include <openssl/ecdh.h>
|
|
|
|
#ifndef BN_is_negative
|
|
|
|
#define BN_set_negative(bn, flag) ((bn)->neg=(flag)?1:0)
|
|
|
|
#define BN_is_negative(bn) ((bn)->neg != 0)
|
|
|
|
#endif
|
|
|
|
|
2002-09-16 21:10:29 +00:00
|
|
|
#endif /* __crypto_headers_h__ */
|