Home
last modified time | relevance | path

Searched refs:keyblob (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dssh-add.c205 struct sshbuf *keyblob; in add_file() local
226 if ((r = sshbuf_load_fd(fd, &keyblob)) != 0) { in add_file()
229 sshbuf_free(keyblob); in add_file()
236 if ((r = sshkey_parse_private_fileblob(keyblob, "", &private, in add_file()
244 if ((r = sshkey_parse_private_fileblob(keyblob, pass, &private, in add_file()
260 if ((r = sshkey_parse_private_fileblob(keyblob, pass, in add_file()
269 sshbuf_free(keyblob); in add_file()
280 sshbuf_free(keyblob); in add_file()
Dauthfile.c72 struct sshbuf *keyblob = NULL; in sshkey_save_private() local
75 if ((keyblob = sshbuf_new()) == NULL) in sshkey_save_private()
77 if ((r = sshkey_private_to_fileblob(key, keyblob, passphrase, comment, in sshkey_save_private()
80 if ((r = sshkey_save_private_blob(keyblob, filename)) != 0) in sshkey_save_private()
84 sshbuf_free(keyblob); in sshkey_save_private()
Dsshconnect2.c2027 u_char *sig = NULL, *keyblob = NULL; in userauth_hostbased() local
2103 if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) { in userauth_hostbased()
2113 (r = sshbuf_put_string(b, keyblob, keylen)) != 0 || in userauth_hostbased()
2134 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 || in userauth_hostbased()
2147 free(keyblob); in userauth_hostbased()