summaryrefslogtreecommitdiff
path: root/src/ltc/ciphers/camellia.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ltc/ciphers/camellia.c')
-rw-r--r--src/ltc/ciphers/camellia.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ltc/ciphers/camellia.c b/src/ltc/ciphers/camellia.c
index 7f13f621..733e9639 100644
--- a/src/ltc/ciphers/camellia.c
+++ b/src/ltc/ciphers/camellia.c
@@ -621,6 +621,9 @@ int camellia_ecb_decrypt(const unsigned char *ct, unsigned char *pt, const symme
int camellia_test(void)
{
+#ifndef LTC_TEST
+ return CRYPT_NOP;
+#else
static const struct {
int keylen;
unsigned char key[32], pt[16], ct[16];
@@ -697,6 +700,7 @@ int camellia_test(void)
}
}
return CRYPT_OK;
+#endif
}
void camellia_done(symmetric_key *skey)