From 761255928e0a56ce915f35f6c22b8b6945050659 Mon Sep 17 00:00:00 2001 From: Amaury Pouly Date: Mon, 29 Nov 2010 14:15:06 +0000 Subject: sbinfo: add full support for various kind of cryptographic checks - now have a AES128, SHA1 and CRC implementation - now crc check the boot section chunks as well as the instruction headers - now sha1 check the sb header and the whole file - nearly all fields of the sb format are now documented git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28708 a1c6a512-1295-4272-9138-f99709370657 --- utils/sbinfo/aes128_impl.h | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 utils/sbinfo/aes128_impl.h (limited to 'utils/sbinfo/aes128_impl.h') diff --git a/utils/sbinfo/aes128_impl.h b/utils/sbinfo/aes128_impl.h deleted file mode 100644 index 7f1b966cd3..0000000000 --- a/utils/sbinfo/aes128_impl.h +++ /dev/null @@ -1,10 +0,0 @@ -#include -#include -#include - -typedef uint8_t byte; - -void xor_(byte *a, byte *b, int n); -void EncryptAES(byte *msg, byte *key, byte *c); -void DecryptAES(byte *c, byte *key, byte *m); -void Pretty(byte* b,int len,const char* label); -- cgit