ID Chip Reader
sha1.h
Go to the documentation of this file.
1 
7 #pragma once
8 #ifndef CRYPTOGRAPHY_SHA1_H_
9 #define CRYPTOGRAPHY_SHA1_H_
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
22 void sha1(unsigned char* input, long long length, unsigned char* output);
23 
24 #ifdef __cplusplus
25 }
26 #endif
27 
28 #endif // #ifndef CRYPTOGRAPHY_SHA1_H_