Software implementation of the SHA1 algorithm. More...
#include "atca_compiler.h"#include <stdio.h>#include <stdlib.h>#include <stddef.h>#include <stdint.h>Data Structures | |
| struct | CL_HashContext | 
Functions | |
| void | shaEngine (uint32_t *buf, uint32_t *h) | 
| void | CL_hashInit (CL_HashContext *ctx) | 
| void | CL_hashUpdate (CL_HashContext *ctx, const uint8_t *src, int nbytes) | 
| void | CL_hashFinal (CL_HashContext *ctx, uint8_t *dest) | 
| void | CL_hash (uint8_t *msg, int msgBytes, uint8_t *dest) | 
Software implementation of the SHA1 algorithm.