summaryrefslogtreecommitdiff
path: root/rijndael.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2000-10-14 10:57:04 +0000
committerKevin Steves <stevesk@pobox.com>2000-10-14 10:57:04 +0000
commitf16b9d277383693fe7db29702a0b9763f9f14569 (patch)
treeed2e53a6b0b246136352ee84eac767bb1151bab0 /rijndael.c
parentcee23de1530f51b235776822cde011889518eb52 (diff)
downloadopenssh-git-f16b9d277383693fe7db29702a0b9763f9f14569.tar.gz
- (stevesk) rijndael.c: cleanup missing declaration warnings.
Diffstat (limited to 'rijndael.c')
-rw-r--r--rijndael.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/rijndael.c b/rijndael.c
index fd1cc99b..737007ec 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];
-};
+}