HomeSort by relevance Sort by last modified time
    Searched refs:STATE_SIZE (Results 1 - 3 of 3) sorted by null

  /external/openssl/crypto/rand/
md_rand.c 138 #define STATE_SIZE 1023
140 static unsigned char state[STATE_SIZE+MD_DIGEST_LENGTH];
240 /* state_index <= state_num <= STATE_SIZE */
242 if (state_index >= STATE_SIZE)
244 state_index%=STATE_SIZE;
245 state_num=STATE_SIZE;
247 else if (state_num < STATE_SIZE)
252 /* state_index <= state_num <= STATE_SIZE */
254 /* state[st_idx], ..., state[(st_idx + num - 1) % STATE_SIZE]
270 k=(st_idx+j)-STATE_SIZE;
    [all...]