Lines Matching refs:sha1nfo
54 typedef struct sha1nfo { struct
61 } sha1nfo; typedef
67 void sha1_init(sha1nfo *s);
70 void sha1_writebyte(sha1nfo *s, uint8_t data);
73 void sha1_write(sha1nfo *s, const char *data, size_t len);
76 uint8_t* sha1_result(sha1nfo *s);
85 void sha1_init(sha1nfo *s) { in sha1_init()
99 void sha1_hashBlock(sha1nfo *s) { in sha1_hashBlock()
136 void sha1_addUncounted(sha1nfo *s, uint8_t data) { in sha1_addUncounted()
150 void sha1_writebyte(sha1nfo *s, uint8_t data) { in sha1_writebyte()
155 void sha1_write(sha1nfo *s, const char *data, size_t len) { in sha1_write()
159 void sha1_pad(sha1nfo *s) { in sha1_pad()
177 uint8_t* sha1_result(sha1nfo *s) { in sha1_result()
203 sha1nfo s; in ComputeSHA1()