aboutsummaryrefslogtreecommitdiff
path: root/example.c
diff options
context:
space:
mode:
Diffstat (limited to 'example.c')
-rw-r--r--example.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/example.c b/example.c
index 8c52887..4a7b3a7 100644
--- a/example.c
+++ b/example.c
@@ -63,17 +63,18 @@ int main(void)
crypt_func((void *)crypted_fn3));
#endif
+#ifdef _DEBUG
printf("crypted_fn:\n");
printHexBuf((uint8_t *)crypted_fn, 160, 32);
printf("crypted_fn2:\n");
printHexBuf((uint8_t *)crypted_fn2, 160, 32);
printf("crypted_fn3:\n");
printHexBuf((uint8_t *)crypted_fn3, 160, 32);
-#ifdef _DEBUG
+#endif
printf("\noutput:\n");
printf("crypted_fn: 0x%X\n", crypted_fn(0, NULL, NULL));
crypted_fn2();
crypted_fn3(NULL, (unsigned int)-1, "TEST");
-#endif
+
return 0;
}