sha2.h

来自「一种基于keygen的加密算法」· C头文件 代码 · 共 90 行

H
90
字号
/** * \file sha2.h */#ifndef _SHA2_H#define _SHA2_H#ifdef __cplusplusextern "C" {#endif/** * \brief          SHA-256 context structure */typedef struct{    unsigned long total[2];     /*!< number of bytes processed  */    unsigned long state[8];     /*!< intermediate digest state  */    unsigned char buffer[64];   /*!< data block being processed */}sha2_context;/** * \brief          SHA-256 context setup * * \param ctx      SHA-256 context to be initialized */void sha2_starts( sha2_context *ctx );/** * \brief          SHA-256 process buffer * * \param ctx      SHA-256 context * \param input    buffer holding the  data * \param ilen     length of the input data */void sha2_update( sha2_context *ctx, unsigned char *input, int ilen );/** * \brief          SHA-256 final digest * * \param ctx      SHA-256 context * \param output   SHA-256 checksum result */void sha2_finish( sha2_context *ctx, unsigned char output[32] );/** * \brief          Output = SHA-256( input buffer ) * * \param input    buffer holding the  data * \param ilen     length of the input data * \param output   SHA-256 checksum result */void sha2_csum( unsigned char *input, int ilen,                unsigned char output[32] );/** * \brief          Output = SHA-256( file contents ) * * \param path     input file name * \param output   SHA-256 checksum result * \return         0 if successful, or 1 if fopen failed */int sha2_file( char *path, unsigned char output[32] );/** * \brief          Output = HMAC-SHA-256( input buffer, hmac key ) * * \param key      HMAC secret key * \param keylen   length of the HMAC key * \param input    buffer holding the  data * \param ilen     length of the input data * \param output   HMAC-SHA-256 result */void sha2_hmac( unsigned char *key, int keylen,                unsigned char *input, int ilen,                unsigned char output[32] );/** * \brief          Checkup routine * * \return         0 if successful, or 1 if the test failed */int sha2_self_test( void );#ifdef __cplusplus}#endif#endif /* sha2.h */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?