mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 10:19:26 +00:00
refer opencrypto/cast.h directly.
This commit is contained in:
parent
b13ac84d46
commit
9f65b10b0f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143406
@ -1,17 +0,0 @@
|
||||
/* $FreeBSD$ */
|
||||
|
||||
#ifndef _CAST128_H_
|
||||
#define _CAST128_H_
|
||||
|
||||
#include <opencrypto/cast.h>
|
||||
|
||||
#define cast128_key cast_key
|
||||
|
||||
#define cast128_setkey(key, rawkey, keybytes) \
|
||||
cast_setkey((key), (rawkey), (keybytes))
|
||||
#define cast128_encrypt(key, inblock, outblock) \
|
||||
cast_encrypt((key), (inblock), (outblock))
|
||||
#define cast128_decrypt(key, inblock, outblock) \
|
||||
cast_decrypt((key), (inblock), (outblock))
|
||||
|
||||
#endif /* _CAST128_H_ */
|
@ -75,7 +75,15 @@
|
||||
|
||||
#include <crypto/des/des.h>
|
||||
#include <crypto/blowfish/blowfish.h>
|
||||
#include <crypto/cast128/cast128.h>
|
||||
|
||||
#include <opencrypto/cast.h>
|
||||
#define cast128_key cast_key
|
||||
#define cast128_setkey(key, rawkey, keybytes) \
|
||||
cast_setkey((key), (rawkey), (keybytes))
|
||||
#define cast128_encrypt(key, inblock, outblock) \
|
||||
cast_encrypt((key), (inblock), (outblock))
|
||||
#define cast128_decrypt(key, inblock, outblock) \
|
||||
cast_decrypt((key), (inblock), (outblock))
|
||||
|
||||
#include <net/net_osdep.h>
|
||||
|
||||
|
@ -35,9 +35,9 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/uio.h>
|
||||
|
||||
#include <crypto/blowfish/blowfish.h>
|
||||
#include <crypto/cast128/cast128.h>
|
||||
#include <crypto/sha1.h>
|
||||
#include <opencrypto/rmd160.h>
|
||||
#include <opencrypto/cast.h>
|
||||
#include <opencrypto/skipjack.h>
|
||||
#include <sys/md5.h>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user