Home | History | Annotate | Download | only in openssh

Lines Matching defs:blob

271 			u_char *blob;
274 if ((r = sshkey_to_blob(id->key, &blob, &blen)) != 0) {
279 if ((r = sshbuf_put_string(msg, blob, blen)) != 0)
282 free(blob);
390 u_char *blob, *data, *signature = NULL;
400 if ((r = sshbuf_get_string(e->request, &blob, &blen)) != 0 ||
406 if ((r = sshkey_from_blob(blob, blen, &key)) != 0) {
407 error("%s: cannot parse key blob: %s", __func__, ssh_err(r));
439 free(blob);
450 u_char *blob;
474 if ((r = sshbuf_get_string(e->request, &blob, &blen)) != 0)
476 if ((r = sshkey_from_blob(blob, blen, &key)) != 0)
479 free(blob);