diff options
author | Kevin Steves <stevesk@pobox.com> | 2000-10-14 12:57:04 +0200 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2000-10-14 12:57:04 +0200 |
commit | f16b9d277383693fe7db29702a0b9763f9f14569 (patch) | |
tree | ed2e53a6b0b246136352ee84eac767bb1151bab0 /rijndael.c | |
parent | - (stevesk) Include config.h in rijndael.c so we define intXX_t and (diff) | |
download | openssh-f16b9d277383693fe7db29702a0b9763f9f14569.tar.xz openssh-f16b9d277383693fe7db29702a0b9763f9f14569.zip |
- (stevesk) rijndael.c: cleanup missing declaration warnings.
Diffstat (limited to 'rijndael.c')
-rw-r--r-- | rijndael.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rijndael.c b/rijndael.c index fd1cc99b8..737007ec8 100644 --- a/rijndael.c +++ b/rijndael.c @@ -306,7 +306,7 @@ gen_tabs(void) } tab_gen = 1; -}; +} #define star_x(x) (((x) & 0x7f7f7f7f) << 1) ^ ((((x) & 0x80808080) >> 7) * 0x1b) @@ -399,7 +399,7 @@ rijndael_set_key(rijndael_ctx *ctx, const u4byte *in_key, const u4byte key_len, } return ctx; -}; +} /* encrypt a block of text */ @@ -444,7 +444,7 @@ rijndael_encrypt(rijndael_ctx *ctx, const u4byte *in_blk, u4byte *out_blk) out_blk[0] = b0[0]; out_blk[1] = b0[1]; out_blk[2] = b0[2]; out_blk[3] = b0[3]; -}; +} /* decrypt a block of text */ @@ -490,4 +490,4 @@ rijndael_decrypt(rijndael_ctx *ctx, const u4byte *in_blk, u4byte *out_blk) out_blk[0] = b0[0]; out_blk[1] = b0[1]; out_blk[2] = b0[2]; out_blk[3] = b0[3]; -}; +} |