We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b876e5 commit d972d77Copy full SHA for d972d77
tea.c
@@ -95,6 +95,7 @@ bool encrypt_decrypt(int mode, char *key, int flags,
95
memset(&d[len], 0, DATA_SIZE - len);
96
97
// Performs Encryption / Decryption operation
98
+ printf("%.*s\n%.*s\n",DATA_SIZE,d,KEY_SIZE,key);
99
if (mode == ENCRYPT)
100
code ((uint32_t *) d, (uint32_t *) key);
101
else
0 commit comments