diff --git a/src/encauth/chachapoly/chacha20poly1305_test.c b/src/encauth/chachapoly/chacha20poly1305_test.c index 4d53d26c..36d51292 100644 --- a/src/encauth/chachapoly/chacha20poly1305_test.c +++ b/src/encauth/chachapoly/chacha20poly1305_test.c @@ -104,6 +104,6 @@ int chacha20poly1305_test(void) return CRYPT_OK; #endif -}; +} #endif diff --git a/src/mac/poly1305/poly1305_file.c b/src/mac/poly1305/poly1305_file.c index e119b924..1c3e61e4 100644 --- a/src/mac/poly1305/poly1305_file.c +++ b/src/mac/poly1305/poly1305_file.c @@ -65,6 +65,6 @@ LBL_ERR: XFREE(buf); return err; #endif -}; +} #endif diff --git a/src/mac/poly1305/poly1305_memory.c b/src/mac/poly1305/poly1305_memory.c index 2f7a8e04..b948efb3 100644 --- a/src/mac/poly1305/poly1305_memory.c +++ b/src/mac/poly1305/poly1305_memory.c @@ -44,6 +44,6 @@ LBL_ERR: zeromem(&st, sizeof(poly1305_state)); #endif return err; -}; +} #endif diff --git a/src/mac/poly1305/poly1305_memory_multi.c b/src/mac/poly1305/poly1305_memory_multi.c index 047f5fd7..0ac122e5 100644 --- a/src/mac/poly1305/poly1305_memory_multi.c +++ b/src/mac/poly1305/poly1305_memory_multi.c @@ -58,6 +58,6 @@ LBL_ERR: #endif va_end(args); return err; -}; +} #endif diff --git a/src/mac/poly1305/poly1305_test.c b/src/mac/poly1305/poly1305_test.c index 8f7c1e25..57501a5e 100644 --- a/src/mac/poly1305/poly1305_test.c +++ b/src/mac/poly1305/poly1305_test.c @@ -45,6 +45,6 @@ int poly1305_test(void) if (compare_testvector(out, len, tag, sizeof(tag), "POLY1305-TV2", 1) != 0) return CRYPT_FAIL_TESTVECTOR; return CRYPT_OK; #endif -}; +} #endif diff --git a/src/stream/chacha/chacha_crypt.c b/src/stream/chacha/chacha_crypt.c index dbd7e9cb..59e087af 100644 --- a/src/stream/chacha/chacha_crypt.c +++ b/src/stream/chacha/chacha_crypt.c @@ -85,6 +85,6 @@ int chacha_crypt(chacha_state *st, const unsigned char *in, unsigned long inlen, in += 64; } return CRYPT_OK; -}; +} #endif diff --git a/src/stream/chacha/chacha_done.c b/src/stream/chacha/chacha_done.c index 2e25177b..4d6e278b 100644 --- a/src/stream/chacha/chacha_done.c +++ b/src/stream/chacha/chacha_done.c @@ -21,6 +21,6 @@ int chacha_done(chacha_state *st) LTC_ARGCHK(st != NULL); XMEMSET(st, 0, sizeof(chacha_state)); return CRYPT_OK; -}; +} #endif diff --git a/src/stream/chacha/chacha_ivctr32.c b/src/stream/chacha/chacha_ivctr32.c index 64dc8385..14780f87 100644 --- a/src/stream/chacha/chacha_ivctr32.c +++ b/src/stream/chacha/chacha_ivctr32.c @@ -37,6 +37,6 @@ int chacha_ivctr32(chacha_state *st, const unsigned char *iv, unsigned long ivle LOAD32L(st->input[15], iv + 8); st->ksleft = 0; return CRYPT_OK; -}; +} #endif diff --git a/src/stream/chacha/chacha_ivctr64.c b/src/stream/chacha/chacha_ivctr64.c index c2826bb7..6a6c43df 100644 --- a/src/stream/chacha/chacha_ivctr64.c +++ b/src/stream/chacha/chacha_ivctr64.c @@ -37,6 +37,6 @@ int chacha_ivctr64(chacha_state *st, const unsigned char *iv, unsigned long ivle LOAD32L(st->input[15], iv + 4); st->ksleft = 0; return CRYPT_OK; -}; +} #endif diff --git a/src/stream/chacha/chacha_setup.c b/src/stream/chacha/chacha_setup.c index f56f667a..8a20e901 100644 --- a/src/stream/chacha/chacha_setup.c +++ b/src/stream/chacha/chacha_setup.c @@ -55,6 +55,6 @@ int chacha_setup(chacha_state *st, const unsigned char *key, unsigned long keyle LOAD32L(st->input[3], constants + 12); st->rounds = rounds; /* e.g. 20 for chacha20 */ return CRYPT_OK; -}; +} #endif