svn commit: r361014 - head/sys/opencrypto

John Baldwin jhb at FreeBSD.org
Wed May 13 18:36:02 UTC 2020


Author: jhb
Date: Wed May 13 18:36:02 2020
New Revision: 361014
URL: https://svnweb.freebsd.org/changeset/base/361014

Log:
  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.

Modified:
  head/sys/opencrypto/xform_enc.h

Modified: head/sys/opencrypto/xform_enc.h
==============================================================================
--- head/sys/opencrypto/xform_enc.h	Wed May 13 18:35:02 2020	(r361013)
+++ head/sys/opencrypto/xform_enc.h	Wed May 13 18:36:02 2020	(r361014)
@@ -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;


More information about the svn-src-all mailing list