diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-02-15 18:55:51 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-02-15 18:55:51 +0000 |
commit | 89990230d41b563eea53063b106f3d68385526a4 (patch) | |
tree | 9c3e75455345fed7b4121e5e4f2e7c0eb40c5497 | |
parent | 58a8a0ab9b8e8b4ab947c9442c8cc73da2cf0995 (diff) |
CRD_F_COMP isn't so special that it needs 4 bits for a binary flag
-rw-r--r-- | sys/crypto/cryptodev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h index 0fa8a653b2f..5e6dd370f10 100644 --- a/sys/crypto/cryptodev.h +++ b/sys/crypto/cryptodev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.h,v 1.35 2002/11/21 19:34:25 jason Exp $ */ +/* $OpenBSD: cryptodev.h,v 1.36 2003/02/15 18:55:50 jason Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -125,7 +125,7 @@ struct cryptodesc { place, so don't copy. */ #define CRD_F_IV_EXPLICIT 0x04 /* IV explicitly provided */ #define CRD_F_DSA_SHA_NEEDED 0x08 /* Compute SHA-1 of buffer for DSA */ -#define CRD_F_COMP 0x0f /* Set when doing compression */ +#define CRD_F_COMP 0x10 /* Set when doing compression */ struct cryptoini CRD_INI; /* Initialization/context data */ #define crd_iv CRD_INI.cri_iv |