diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-07-05 08:34:13 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-07-05 08:34:13 +0000 |
commit | 34b0d7d799b66475d4a2f42447acc3facd1d191d (patch) | |
tree | c2c9042404bc54d02f7675391ad25be474e94374 /sys | |
parent | c977a71ac4d3e3914baf0828a955ac4f27a78d03 (diff) |
Stylistic changes.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/crypto/cryptodev.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/crypto/cryptodev.h b/sys/crypto/cryptodev.h index d04f0c7bfd9..715d98d764d 100644 --- a/sys/crypto/cryptodev.h +++ b/sys/crypto/cryptodev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.h,v 1.10 2001/07/05 08:26:05 jjbg Exp $ */ +/* $OpenBSD: cryptodev.h,v 1.11 2001/07/05 08:34:12 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -84,7 +84,7 @@ #define CRYPTO_SHA1_KPDK 10 #define CRYPTO_RIJNDAEL128_CBC 11 /* 128 bit blocksize */ #define CRYPTO_AES_CBC 11 /* 128 bit blocksize -- the same as above */ -#define CRYPTO_ALGORITHM_MAX 18 /* Keep updated - including public key */ +#define CRYPTO_ALGORITHM_MAX 18 /* Keep updated - see below */ /* Begin public key additions */ #define CRYPTO_DH_SEND 12 /* Compute public value */ @@ -94,8 +94,8 @@ #define CRYPTO_DSA_SIGN 16 /* DSA sign */ #define CRYPTO_DSA_VERIFY 17 /* DSA verify */ -/* Non crypto algo, i.e compression */ -#define CRYPTO_DEFLATE_COMP 18 /* Deflate compression algo */ +/* Compression */ +#define CRYPTO_DEFLATE_COMP 18 /* Deflate compression algorithm */ /* Algorithm flags */ #define CRYPTO_ALG_FLAG_SUPPORTED 0x00000001 /* Algorithm is supported */ |