diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2015-11-12 16:57:01 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2015-11-12 16:57:01 +0000 |
commit | 994bbe04b03f3beed65ee24c32fb302e916fff89 (patch) | |
tree | 7cc22cfccf78506762221c2a3360c1595a641a67 /sys/crypto/cryptodev.h | |
parent | 7ff8fbd10f0b95fd788321b5aaea5f1d834dcc6a (diff) |
remove a few unused defines
Diffstat (limited to 'sys/crypto/cryptodev.h')
-rw-r--r-- | sys/crypto/cryptodev.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h index a067bab8675..239181fded4 100644 --- a/sys/crypto/cryptodev.h +++ b/sys/crypto/cryptodev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.h,v 1.63 2015/11/12 16:50:55 mikeb Exp $ */ +/* $OpenBSD: cryptodev.h,v 1.64 2015/11/12 16:57:00 mikeb Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -179,7 +179,6 @@ struct cryptop { #define CRYPTO_F_IMBUF 0x0001 /* Input/output are mbuf chains, otherwise contig */ #define CRYPTO_F_IOV 0x0002 /* Input/output are uio */ -#define CRYPTO_F_REL 0x0004 /* Must return data in same place */ #define CRYPTO_F_NOQUEUE 0x0008 /* Don't use crypto queue/thread */ #define CRYPTO_F_DONE 0x0010 /* request completed */ @@ -214,8 +213,6 @@ struct cryptocap { u_int8_t cc_flags; #define CRYPTOCAP_F_CLEANUP 0x01 #define CRYPTOCAP_F_SOFTWARE 0x02 -#define CRYPTOCAP_F_ENCRYPT_MAC 0x04 /* Can do encrypt-then-MAC (IPsec) */ -#define CRYPTOCAP_F_MAC_ENCRYPT 0x08 /* Can do MAC-then-encrypt (TLS) */ int (*cc_newsession) (u_int32_t *, struct cryptoini *); int (*cc_process) (struct cryptop *); |