1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- #ifndef __PUBLIC_H
- #define __PUBLIC_H
- #include "esp_err.h"
- #include "sdkconfig.h"
- #include <stddef.h>
- #include "esp_log.h"
- #define IOT_TRUE (1)
- #define IOT_FALSE (0)
- #include <stdint.h>
- #define SHA1_DIGEST_SIZE (20)
- typedef struct {
- uint32_t total[2];
- uint32_t state[5];
- unsigned char buffer[64];
- } iot_sha1_context;
- void utils_sha1_init(iot_sha1_context *ctx);
- void utils_sha1_free(iot_sha1_context *ctx);
- void utils_sha1_clone(iot_sha1_context *dst,
- const iot_sha1_context *src);
- void utils_sha1_starts(iot_sha1_context *ctx);
- void utils_sha1_update(iot_sha1_context *ctx, const unsigned char *input, uint32_t ilen);
- void utils_sha1_finish(iot_sha1_context *ctx, unsigned char output[20]);
- void utils_sha1_process(iot_sha1_context *ctx, const unsigned char data[64]);
- void utils_sha1(const unsigned char *input, uint32_t ilen, unsigned char output[20]);
- void utils_hmac_sha1(const char *msg, int msg_len, char *digest, const char *key, int key_len);
- void utils_hmac_sha1_hex(const char *msg, int msg_len, char *digest, const char *key, int key_len);
- #endif
|