Coda Distributed File System
|
#include <sys/types.h>
#include <stdint.h>
Go to the source code of this file.
Classes | |
struct | MD5Context |
struct | SHAContext |
Macros | |
#define | SHA_DIGEST_LENGTH 20 |
Typedefs | |
typedef struct MD5Context | MD5_CTX |
typedef struct SHAContext | SHA_CTX |
Functions | |
void | MD5_Init (MD5_CTX *) |
void | MD5_Update (MD5_CTX *, const unsigned char *, unsigned int) |
void | MD5_Final (unsigned char[16], MD5_CTX *) |
void | SHA1_Init (SHA_CTX *ctx) |
void | SHA1_Update (SHA_CTX *ctx, const unsigned char *buf, unsigned int len) |
void | SHA1_Final (unsigned char sha[SHA_DIGEST_LENGTH], SHA_CTX *ctx) |
#define SHA_DIGEST_LENGTH 20 |
typedef struct MD5Context MD5_CTX |
typedef struct SHAContext SHA_CTX |
void MD5_Final | ( | unsigned char | digest[16], |
MD5_CTX * | context | ||
) |
void MD5_Init | ( | MD5_CTX * | context | ) |
void MD5_Update | ( | MD5_CTX * | context, |
const unsigned char * | input, | ||
unsigned int | inputLen | ||
) |
void SHA1_Final | ( | unsigned char | sha[SHA_DIGEST_LENGTH], |
SHA_CTX * | ctx | ||
) |
void SHA1_Init | ( | SHA_CTX * | ctx | ) |
void SHA1_Update | ( | SHA_CTX * | ctx, |
const unsigned char * | buf, | ||
unsigned int | len | ||
) |