Trim a few more things I missed from xform_enc.h.

An extern declaration for the now-removed Blowfish encryption
transform, and an include of the DES header.
This commit is contained in:
John Baldwin 2020-05-13 18:36:02 +00:00
parent 07a34ce381
commit f272bc03cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=361014

View File

@ -33,7 +33,6 @@
#include <sys/malloc.h>
#include <sys/errno.h>
#include <crypto/des/des.h>
#include <crypto/rijndael/rijndael.h>
#include <crypto/camellia/camellia.h>
#include <opencrypto/cryptodev.h>
@ -68,7 +67,6 @@ struct enc_xform {
extern struct enc_xform enc_xform_null;
extern struct enc_xform enc_xform_blf;
extern struct enc_xform enc_xform_rijndael128;
extern struct enc_xform enc_xform_aes_icm;
extern struct enc_xform enc_xform_aes_nist_gcm;