TuyaOS
sha1.h
浏览该文件的文档.
1
36#include "netif/ppp/ppp_opts.h"
37#if LWIP_INCLUDED_POLARSSL_SHA1
38
39#ifndef LWIP_INCLUDED_POLARSSL_SHA1_H
40#define LWIP_INCLUDED_POLARSSL_SHA1_H
41
45typedef struct
46{
47 unsigned long total[2];
48 unsigned long state[5];
49 unsigned char buffer[64];
50}
51sha1_context;
52
53#ifdef __cplusplus
54extern "C" {
55#endif
56
62void sha1_starts( sha1_context *ctx );
63
71void sha1_update( sha1_context *ctx, const unsigned char *input, int ilen );
72
79void sha1_finish( sha1_context *ctx, unsigned char output[20] );
80
88void sha1( unsigned char *input, int ilen, unsigned char output[20] );
89
90#ifdef __cplusplus
91}
92#endif
93
94#endif /* LWIP_INCLUDED_POLARSSL_SHA1_H */
95
96#endif /* LWIP_INCLUDED_POLARSSL_SHA1 */