Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/ciphers/camellia.c
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down Expand Up @@ -697,6 +700,7 @@ int camellia_test(void)
}
}
return CRYPT_OK;
#endif
}

void camellia_done(symmetric_key *skey)
Expand Down