Searched refs:keyblob (Results 1 – 7 of 7) sorted by relevance
/freebsd/crypto/openssh/ |
H A D | authfile.c | 72 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()
|
H A D | ssh-add.c | 257 struct sshbuf *keyblob; in add_file() local 278 if ((r = sshbuf_load_fd(fd, &keyblob)) != 0) { in add_file() 281 sshbuf_free(keyblob); in add_file() 288 if ((r = sshkey_parse_private_fileblob(keyblob, "", &private, in add_file() 296 if ((r = sshkey_parse_private_fileblob(keyblob, pass, &private, in add_file() 312 if ((r = sshkey_parse_private_fileblob(keyblob, pass, in add_file() 321 sshbuf_free(keyblob); in add_file() 332 sshbuf_free(keyblob); in add_file()
|
H A D | PROTOCOL.agent | 62 string keyblob
|
H A D | sshconnect2.c | 2135 u_char *sig = NULL, *keyblob = NULL; in userauth_hostbased() local 2210 if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) { in userauth_hostbased() 2220 (r = sshbuf_put_string(b, keyblob, keylen)) != 0 || in userauth_hostbased() 2241 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 || in userauth_hostbased() 2254 free(keyblob); in userauth_hostbased()
|
/freebsd/crypto/openssl/include/internal/ |
H A D | bio.h | 67 # define BIO_set_ktls(b, keyblob, is_tx) \ argument 68 BIO_ctrl(b, BIO_CTRL_SET_KTLS, is_tx, keyblob)
|
/freebsd/crypto/openssl/providers/implementations/encode_decode/ |
H A D | encode_key2any.c | 765 unsigned char *keyblob; in ecx_spki_pub_to_der() local 772 keyblob = OPENSSL_memdup(ecxkey->pubkey, ecxkey->keylen); in ecx_spki_pub_to_der() 773 if (keyblob == NULL) { in ecx_spki_pub_to_der() 778 *pder = keyblob; in ecx_spki_pub_to_der()
|
/freebsd/crypto/openssl/crypto/err/ |
H A D | openssl.txt | 883 PEM_R_KEYBLOB_HEADER_PARSE_ERROR:122:keyblob header parse error 884 PEM_R_KEYBLOB_TOO_SHORT:123:keyblob too short
|