diff options
author | 2000-12-29 10:56:27 +0000 | |
---|---|---|
committer | 2000-12-29 10:56:27 +0000 | |
commit | 770579001a4ea2111834f062d49de3dc7c2dc9a4 (patch) | |
tree | d4135dd030e4e4c396f99a68faf8281126a49e75 | |
parent | sync with portable openssh; stevesk@pobox.com (diff) | |
download | wireguard-openbsd-770579001a4ea2111834f062d49de3dc7c2dc9a4.tar.xz wireguard-openbsd-770579001a4ea2111834f062d49de3dc7c2dc9a4.zip |
undo change in comment; stevesk@pobox.com
-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)); |