blob: 0d8f6914f29ba87c8339f358d290917f34130eea [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001/*
2 * See "sha1.c" for author info.
3 */
4#ifndef _DALVIK_SHA1
5#define _DALVIK_SHA1
6
Carl Shapirobfc97992011-04-27 14:16:08 -07007struct SHA1_CTX {
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08008 unsigned long state[5];
9 unsigned long count[2];
10 unsigned char buffer[64];
Carl Shapirobfc97992011-04-27 14:16:08 -070011};
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080012
13#define HASHSIZE 20
14
15void SHA1Init(SHA1_CTX* context);
16void SHA1Update(SHA1_CTX* context, const unsigned char* data,
17 unsigned long len);
18void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);
19
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080020#endif /*_DALVIK_SHA1*/