Searched refs:keyblob (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/crypto/openssl/include/internal/
H A Dbio.h65 # define BIO_set_ktls(b, keyblob, is_tx) \
66 BIO_ctrl(b, BIO_CTRL_SET_KTLS, is_tx, keyblob)
/freebsd-13-stable/crypto/openssh/
H A Dssh-add.c200 struct sshbuf *keyblob; local
221 if ((keyblob = sshbuf_new()) == NULL)
223 if ((r = sshkey_load_file(fd, keyblob)) != 0) {
226 sshbuf_free(keyblob);
233 if ((r = sshkey_parse_private_fileblob(keyblob, "", &private,
241 if ((r = sshkey_parse_private_fileblob(keyblob, pass, &private,
257 if ((r = sshkey_parse_private_fileblob(keyblob, pass,
266 sshbuf_free(keyblob);
277 sshbuf_free(keyblob);
H A Dauthfile.c79 struct sshbuf *keyblob = NULL; local
82 if ((keyblob = sshbuf_new()) == NULL)
84 if ((r = sshkey_private_to_fileblob(key, keyblob, passphrase, comment,
87 if ((r = sshkey_save_private_blob(keyblob, filename)) != 0)
91 sshbuf_free(keyblob);
H A Dsshconnect2.c1925 u_char *sig = NULL, *keyblob = NULL; local
2000 if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) {
2010 (r = sshbuf_put_string(b, keyblob, keylen)) != 0 ||
2032 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
2045 free(keyblob);

Completed in 159 milliseconds