summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-12-29 10:56:28 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-12-29 10:56:28 +0000
commit9885641eb6ac0f2d5020e999d16c777c2cfe09f9 (patch)
tree1cd215cfae9be1b0be754d75bb344f51d1500a1f /usr.bin
parente67ccfd2e0f3a34a1655afafb141110a1e01047b (diff)
undo change in comment; stevesk@pobox.com
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/rijndael.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/rijndael.h b/usr.bin/ssh/rijndael.h
index 276cc144fb9..c13f18c9590 100644
--- a/usr.bin/ssh/rijndael.h
+++ b/usr.bin/ssh/rijndael.h
@@ -3,9 +3,9 @@
/* 1. Standard types for AES cryptography source code */
-typedef u_int8_t u1byte; /* an 8 bit u_character type */
-typedef u_int16_t u2byte; /* a 16 bit u_integer type */
-typedef u_int32_t u4byte; /* a 32 bit u_integer type */
+typedef u_int8_t u1byte; /* an 8 bit unsigned character type */
+typedef u_int16_t u2byte; /* a 16 bit unsigned integer type */
+typedef u_int32_t u4byte; /* a 32 bit unsigned integer type */
typedef int8_t s1byte; /* an 8 bit signed character type */
typedef int16_t s2byte; /* a 16 bit signed integer type */
@@ -21,7 +21,7 @@ typedef struct _rijndael_ctx {
/* 2. Standard interface for AES cryptographic routines */
-/* These are all based on 32 bit u_values and will therefore */
+/* These are all based on 32 bit unsigned values and will therefore */
/* require endian conversions for big-endian architectures */
rijndael_ctx *rijndael_set_key __P((rijndael_ctx *, const u4byte *, u4byte, int));