summaryrefslogtreecommitdiff
path: root/sys/opencrypto
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2006-05-17 18:04:51 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2006-05-17 18:04:51 +0000
commit645df8d06ee662240d437e0a7035c0e4156b21a2 (patch)
tree794b25b44352c7a24747715c971441183298e0c2 /sys/opencrypto
parent613894d04764252e68f52e0811733e84868e0bb8 (diff)
Notes
Diffstat (limited to 'sys/opencrypto')
-rw-r--r--sys/opencrypto/cryptodev.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/opencrypto/cryptodev.h b/sys/opencrypto/cryptodev.h
index dd185f9b294b..6791b3554956 100644
--- a/sys/opencrypto/cryptodev.h
+++ b/sys/opencrypto/cryptodev.h
@@ -209,7 +209,6 @@ struct cryptostats {
struct cryptoini {
int cri_alg; /* Algorithm to use */
int cri_klen; /* Key length, in bits */
- int cri_rnd; /* Algorithm rounds, where relevant */
caddr_t cri_key; /* key to use */
u_int8_t cri_iv[EALG_MAX_BLOCK_LEN]; /* IV to use */
struct cryptoini *cri_next;
@@ -233,7 +232,6 @@ struct cryptodesc {
struct cryptoini CRD_INI; /* Initialization/context data */
#define crd_iv CRD_INI.cri_iv
#define crd_key CRD_INI.cri_key
-#define crd_rnd CRD_INI.cri_rnd
#define crd_alg CRD_INI.cri_alg
#define crd_klen CRD_INI.cri_klen