summaryrefslogtreecommitdiff
path: root/libtomcrypt/src/ciphers
diff options
context:
space:
mode:
authorGa?l PORTAY <gael.portay@gmail.com>2015-05-02 12:16:06 +0200
committerGa?l PORTAY <gael.portay@gmail.com>2015-05-02 12:16:06 +0200
commitcbc0af23fab79cb793ee708f72f806638052426b (patch)
tree1892ec81b4227661efee9b5de3bb6e5533f45361 /libtomcrypt/src/ciphers
parentf5855dcde763d77cf996a6314724cedae0e4641a (diff)
downloaddropbear-cbc0af23fab79cb793ee708f72f806638052426b.tar.gz
Fix unused parameters warnings [-Werror=unused-parameter]
Diffstat (limited to 'libtomcrypt/src/ciphers')
-rw-r--r--libtomcrypt/src/ciphers/aes/aes.c1
-rw-r--r--libtomcrypt/src/ciphers/des.c1
-rw-r--r--libtomcrypt/src/ciphers/twofish/twofish.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/libtomcrypt/src/ciphers/aes/aes.c b/libtomcrypt/src/ciphers/aes/aes.c
index 74798e8..ee76b24 100644
--- a/libtomcrypt/src/ciphers/aes/aes.c
+++ b/libtomcrypt/src/ciphers/aes/aes.c
@@ -728,6 +728,7 @@ int ECB_TEST(void)
*/
void ECB_DONE(symmetric_key *skey)
{
+ (void)skey;
}
diff --git a/libtomcrypt/src/ciphers/des.c b/libtomcrypt/src/ciphers/des.c
index e505b14..6005e84 100644
--- a/libtomcrypt/src/ciphers/des.c
+++ b/libtomcrypt/src/ciphers/des.c
@@ -1871,6 +1871,7 @@ void des_done(symmetric_key *skey)
*/
void des3_done(symmetric_key *skey)
{
+ (void)skey;
}
diff --git a/libtomcrypt/src/ciphers/twofish/twofish.c b/libtomcrypt/src/ciphers/twofish/twofish.c
index 9e6d0d4..8f81bdd 100644
--- a/libtomcrypt/src/ciphers/twofish/twofish.c
+++ b/libtomcrypt/src/ciphers/twofish/twofish.c
@@ -684,6 +684,7 @@ int twofish_test(void)
*/
void twofish_done(symmetric_key *skey)
{
+ (void)skey;
}
/**