Sources/aliyun-log-c-sdk/log_sha1.c (117 lines of code) (raw):

#include <string.h> /* memcpy & co */ #include <stdint.h> #include "log_sha1.h" #ifndef LITTLE_ENDIAN #define LITTLE_ENDIAN #endif /********************************************************************************************************/ /** * \brief initialises given SHA-1 context * */ void log_sha1_init(log_sha1_ctx_t *state){ state->h[0] = 0x67452301; state->h[1] = 0xefcdab89; state->h[2] = 0x98badcfe; state->h[3] = 0x10325476; state->h[4] = 0xc3d2e1f0; state->length = 0; } /********************************************************************************************************/ /* some helping functions */ uint32_t log_rotl32(uint32_t n, uint8_t bits){ return ((n<<bits) | (n>>(32-bits))); } uint32_t log_change_endian32(uint32_t x){ return (((x)<<24) | ((x)>>24) | (((x)& 0x0000ff00)<<8) | (((x)& 0x00ff0000)>>8)); } /* three SHA-1 inner functions */ uint32_t log_ch(uint32_t x, uint32_t y, uint32_t z){ return ((x&y)^((~x)&z)); } uint32_t log_maj(uint32_t x, uint32_t y, uint32_t z){ return ((x&y)^(x&z)^(y&z)); } uint32_t log_parity(uint32_t x, uint32_t y, uint32_t z){ return ((x^y)^z); } /********************************************************************************************************/ /** * \brief "add" a block to the hash * This is the core function of the hash algorithm. To understand how it's working * and what thoese variables do, take a look at FIPS-182. This is an "alternativ" implementation */ #define MASK 0x0000000f typedef uint32_t (*pf_t)(uint32_t x, uint32_t y, uint32_t z); void log_sha1_nextBlock (log_sha1_ctx_t *state, const void *block){ uint32_t a[5]; uint32_t w[16]; uint32_t temp; uint8_t t,s,fi, fib; pf_t f[] = {log_ch,log_parity,log_maj,log_parity}; uint32_t k[4]={ 0x5a827999, 0x6ed9eba1, 0x8f1bbcdc, 0xca62c1d6}; /* load the w array (changing the endian and so) */ for(t=0; t<16; ++t){ w[t] = log_change_endian32(((uint32_t*)block)[t]); } /* load the state */ memcpy(a, state->h, 5*sizeof(uint32_t)); /* the fun stuff */ for(fi=0,fib=0,t=0; t<=79; ++t){ s = t & MASK; if(t>=16){ w[s] = log_rotl32( w[(s+13)&MASK] ^ w[(s+8)&MASK] ^ w[(s+ 2)&MASK] ^ w[s] ,1); } uint32_t dtemp; temp = log_rotl32(a[0],5) + (dtemp=f[fi](a[1],a[2],a[3])) + a[4] + k[fi] + w[s]; memmove(&(a[1]), &(a[0]), 4*sizeof(uint32_t)); /* e=d; d=c; c=b; b=a; */ a[0] = temp; a[2] = log_rotl32(a[2],30); /* we might also do rotr32(c,2) */ fib++; if(fib==20){ fib=0; fi = (fi+1)%4; } } /* update the state */ for(t=0; t<5; ++t){ state->h[t] += a[t]; } state->length += 512; } /********************************************************************************************************/ void log_sha1_lastBlock(log_sha1_ctx_t *state, const void *block, uint16_t length){ uint8_t lb[LOG_SHA1_BLOCK_BYTES]; /* local block */ while(length>=LOG_SHA1_BLOCK_BITS){ log_sha1_nextBlock(state, block); length -= LOG_SHA1_BLOCK_BITS; block = (uint8_t*)block + LOG_SHA1_BLOCK_BYTES; } state->length += length; memset(lb, 0, LOG_SHA1_BLOCK_BYTES); memcpy (lb, block, (length+7)>>3); /* set the final one bit */ lb[length>>3] |= 0x80>>(length & 0x07); if (length>512-64-1){ /* not enouth space for 64bit length value */ log_sha1_nextBlock(state, lb); state->length -= 512; memset(lb, 0, LOG_SHA1_BLOCK_BYTES); } /* store the 64bit length value */ #if defined LITTLE_ENDIAN /* this is now rolled up */ uint8_t i; for (i=0; i<8; ++i){ lb[56+i] = ((uint8_t*)&(state->length))[7-i]; } #elif defined BIG_ENDIAN *((uint64_t)&(lb[56])) = state->length; #endif log_sha1_nextBlock(state, lb); } /********************************************************************************************************/ void log_sha1_ctx2hash (void *dest, log_sha1_ctx_t *state){ #if defined LITTLE_ENDIAN uint8_t i; for(i=0; i<5; ++i){ ((uint32_t*)dest)[i] = log_change_endian32(state->h[i]); } #elif BIG_ENDIAN if (dest != state->h) memcpy(dest, state->h, LOG_SHA1_HASH_BITS/8); #else # error unsupported endian type! #endif } /********************************************************************************************************/ /** * * */ void log_sha1 (void *dest, const void *msg, uint32_t length){ log_sha1_ctx_t s; log_sha1_init(&s); while(length & (~0x0001ff)){ /* length>=512 */ log_sha1_nextBlock(&s, msg); msg = (uint8_t*)msg + LOG_SHA1_BLOCK_BITS/8; /* increment pointer to next block */ length -= LOG_SHA1_BLOCK_BITS; } log_sha1_lastBlock(&s, msg, length); log_sha1_ctx2hash(dest, &s); }