enctypes aren't enabled.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@24297
dc483132-0cff-0310-8789-
dd5450dbe970
#include <unistd.h>
#include "camellia.h"
+#ifdef CAMELLIA_CCM
+
#define B 16U
unsigned char key[16];
unsigned char test_case_len[] = { B+1, 2*B-1, 2*B, 2*B+1, 3*B-1, 3*B, 4*B, };
printf ("\n");
}
+#endif /* CAMELLIA_CCM */
+
int main ()
{
+#ifdef CAMELLIA_CCM
init ();
fips_test ();
ecb_test();
cbc_test();
cts_test();
+#endif
return 0;
}
#include "camellia.h"
+#ifdef CAMELLIA_CCM
+
/* key constants */
#define CAMELLIA_SIGMA1L (0xA09E667FL)
Camellia_DecryptBlock(cx->keybitlen, in_blk, cx->k_sch, out_blk);
return camellia_good;
}
+
+#endif /* CAMELLIA_CCM */