Go to the source code of this file.
Classes | |
struct | sha1_ctxt |
Macros | |
#define | SHA1_Final(x, y) sha1_result((y), (x)) |
#define | SHA1_Init(x) sha1_init((x)) |
#define | SHA1_RESULTLEN (160/8) |
#define | SHA1_Update(x, y, z) sha1_loop((x), (y), (z)) |
#define | SHA_DIGEST_LENGTH 20 |
Typedefs | |
typedef struct sha1_ctxt | SHA_CTX |
Functions | |
void | sha1_init (struct sha1_ctxt *) |
void | sha1_loop (struct sha1_ctxt *, const uint8_t *, size_t) |
void | sha1_pad (struct sha1_ctxt *) |
void | sha1_result (struct sha1_ctxt *, uint8_t *) |