123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356 |
- #ifndef POLARSSL_MD_H
- #define POLARSSL_MD_H
- #include <string.h>
- #if defined(_MSC_VER) && !defined(inline)
- #define inline _inline
- #else
- #if defined(__ARMCC_VERSION) && !defined(inline)
- #define inline __inline
- #endif
- #endif
- #define POLARSSL_ERR_MD_FEATURE_UNAVAILABLE -0x5080
- #define POLARSSL_ERR_MD_BAD_INPUT_DATA -0x5100
- #define POLARSSL_ERR_MD_ALLOC_FAILED -0x5180
- #define POLARSSL_ERR_MD_FILE_OPEN_FAILED -0x5200
- #define POLARSSL_ERR_MD_FILE_READ_FAILED -0x5280
- typedef enum {
- POLARSSL_MD_NONE=0,
- POLARSSL_MD_MD2,
- POLARSSL_MD_MD4,
- POLARSSL_MD_MD5,
- POLARSSL_MD_SHA1,
- POLARSSL_MD_SHA224,
- POLARSSL_MD_SHA256,
- POLARSSL_MD_SHA384,
- POLARSSL_MD_SHA512,
- } md_type_t;
- #define POLARSSL_MD_MAX_SIZE 64
- typedef struct {
-
- md_type_t type;
-
- const char * name;
-
- int size;
-
- void (*starts_func)( void *ctx );
-
- void (*update_func)( void *ctx, const unsigned char *input, size_t ilen );
-
- void (*finish_func)( void *ctx, unsigned char *output );
-
- void (*digest_func)( const unsigned char *input, size_t ilen,
- unsigned char *output );
-
- int (*file_func)( const char *path, unsigned char *output );
-
- void (*hmac_starts_func)( void *ctx, const unsigned char *key, size_t keylen );
-
- void (*hmac_update_func)( void *ctx, const unsigned char *input, size_t ilen );
-
- void (*hmac_finish_func)( void *ctx, unsigned char *output);
-
- void (*hmac_reset_func)( void *ctx );
-
- void (*hmac_func)( const unsigned char *key, size_t keylen,
- const unsigned char *input, size_t ilen,
- unsigned char *output );
-
- void * (*ctx_alloc_func)( void );
-
- void (*ctx_free_func)( void *ctx );
- } md_info_t;
- typedef struct {
-
- const md_info_t *md_info;
-
- void *md_ctx;
- } md_context_t;
- #define MD_CONTEXT_T_INIT { \
- NULL, \
- NULL, \
- }
- #ifdef __cplusplus
- extern "C" {
- #endif
- const int *md_list( void );
- const md_info_t *md_info_from_string( const char *md_name );
- const md_info_t *md_info_from_type( md_type_t md_type );
- int md_init_ctx( md_context_t *ctx, const md_info_t *md_info );
- int md_free_ctx( md_context_t *ctx );
- static inline unsigned char md_get_size( const md_info_t *md_info )
- {
- return md_info->size;
- }
- static inline md_type_t md_get_type( const md_info_t *md_info )
- {
- return md_info->type;
- }
- static inline const char *md_get_name( const md_info_t *md_info )
- {
- return md_info->name;
- }
- int md_starts( md_context_t *ctx );
- int md_update( md_context_t *ctx, const unsigned char *input, size_t ilen );
- int md_finish( md_context_t *ctx, unsigned char *output );
- int md( const md_info_t *md_info, const unsigned char *input, size_t ilen,
- unsigned char *output );
- int md_file( const md_info_t *md_info, const char *path, unsigned char *output );
- int md_hmac_starts( md_context_t *ctx, const unsigned char *key, size_t keylen );
- int md_hmac_update( md_context_t *ctx, const unsigned char *input, size_t ilen );
- int md_hmac_finish( md_context_t *ctx, unsigned char *output);
- int md_hmac_reset( md_context_t *ctx );
- int md_hmac( const md_info_t *md_info, const unsigned char *key, size_t keylen,
- const unsigned char *input, size_t ilen,
- unsigned char *output );
- #ifdef __cplusplus
- }
- #endif
- #endif
|