Home | History | Annotate | Download | only in dist

Lines Matching defs:encoded

131 	struct sshbuf *encoded = NULL;
203 if ((encoded = sshbuf_new()) == NULL) {
207 if (sshbuf_put(encoded, sigblob, len) != 0 ||
208 sshbuf_put(encoded, apphash, sizeof(apphash)) != 0 ||
209 sshbuf_put_u8(encoded, sig_flags) != 0 ||
210 sshbuf_put_u32(encoded, sig_counter) != 0 ||
211 sshbuf_put(encoded, msghash, sizeof(msghash)) != 0) {
217 sshbuf_dump(encoded, stderr);
219 sm = sshbuf_ptr(encoded);
220 smlen = sshbuf_len(encoded);
246 sshbuf_free(encoded);