Home | History | Annotate | Download | only in dropbear

Lines Matching defs:hs

134 	hash_state hs;
146 sha1_init(&hs);
147 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
148 sha1_process(&hs, (void*)readbuf, sizeof(readbuf));
149 sha1_done(&hs, hashpool);
161 hash_state hs;
171 sha1_init(&hs);
172 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
173 sha1_process(&hs, (void*)&pid, sizeof(pid));
174 sha1_process(&hs, (void*)&tv, sizeof(tv));
175 sha1_done(&hs, hashpool);
181 hash_state hs;
190 sha1_init(&hs);
191 sha1_process(&hs, (void*)hashpool, sizeof(hashpool));
192 sha1_process(&hs, (void*)&counter, sizeof(counter));
193 sha1_done(&hs, hash);