tuxillo's projects
/
dragonfly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a26a518
)
aesni - printf -> kprintf for DEBUG
author
Alex Hornung
<ahornung@gmail.com>
Sat, 21 Aug 2010 13:36:09 +0000
(14:36 +0100)
committer
Alex Hornung
<ahornung@gmail.com>
Sat, 21 Aug 2010 13:36:09 +0000
(14:36 +0100)
sys/crypto/aesni/aesni_wrap.c
patch
|
blob
|
blame
|
history
diff --git
a/sys/crypto/aesni/aesni_wrap.c
b/sys/crypto/aesni/aesni_wrap.c
index
f1bddcb
..
87d9a86
100644
(file)
--- a/
sys/crypto/aesni/aesni_wrap.c
+++ b/
sys/crypto/aesni/aesni_wrap.c
@@
-43,13
+43,13
@@
ps_len(const char *string, const uint8_t *data, int length)
{
int i;
- printf("%-12s[0x", string);
+
k
printf("%-12s[0x", string);
for(i = 0; i < length; i++) {
if (i % AES_BLOCK_LEN == 0 && i > 0)
- printf("+");
- printf("%02x", data[i]);
+
k
printf("+");
+
k
printf("%02x", data[i]);
}
- printf("]\n");
+
k
printf("]\n");
}
#endif