diff options
author | Amaury Pouly <pamaury@rockbox.org> | 2011-04-17 22:30:09 +0000 |
---|---|---|
committer | Amaury Pouly <pamaury@rockbox.org> | 2011-04-17 22:30:09 +0000 |
commit | b2c59541b47e98fe69ab973ca4ab2688d70aac23 (patch) | |
tree | bb2384b6c844ce9f77ccc2227920a053b5ee33cd /utils/sbtools/crypto.h | |
parent | e3fe3956f6c9c244ccbc57d1ddce7b2202b373f4 (diff) |
sbtoelf: fix to handle unencrypted files (minor tweak)
elftosb: properly generate sb file (encryption not implemented yet)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29742 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/sbtools/crypto.h')
-rw-r--r-- | utils/sbtools/crypto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/sbtools/crypto.h b/utils/sbtools/crypto.h index e36900df47..0662ef8587 100644 --- a/utils/sbtools/crypto.h +++ b/utils/sbtools/crypto.h @@ -41,6 +41,7 @@ void cbc_mac( /* crc.c */ uint32_t crc(byte *data, int size); +uint32_t crc_continue(uint32_t previous_crc, byte *data, int size); /* sha1.c */ struct sha_1_params_t |