changed git call from https to git readonly
[atutor.git] / mods / atsocial_iphone_app / OAuth / Crypto / sha1.h
1
2 // From http://www.mirrors.wiretapped.net/security/cryptography/hashes/sha1/sha1.c
3
4 typedef struct {
5     unsigned long state[5];
6     unsigned long count[2];
7     unsigned char buffer[64];
8 } SHA1_CTX;
9
10 extern void SHA1Init(SHA1_CTX* context);
11 extern void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int len);
12 extern void SHA1Final(unsigned char digest[20], SHA1_CTX* context);