diff options
-rw-r--r-- | usr.bin/ssh/rijndael.h | 8 |
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)); |