HomeSort by: relevance | last modified time | path
    Searched refs:keyblob (Results 1 - 10 of 10) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
ssh-pkcs11-client.c 80 struct sshbuf *keyblob = NULL; local
83 if ((keyblob = sshbuf_new()) == NULL)
85 if ((r = sshkey_putb(key, keyblob)) != 0)
92 if (sshbuf_equals(keyblob,
94 sshbuf_free(keyblob);
99 sshbuf_free(keyblob);
465 struct sshbuf *keyblob = NULL; local
473 if ((keyblob = sshbuf_new()) == NULL)
475 if ((r = sshkey_putb(key, keyblob)) != 0)
480 if (sshbuf_equals(keyblob, helper->keyblobs[i]) == 0)
    [all...]
authfile.c 66 struct sshbuf *keyblob = NULL; local
69 if ((keyblob = sshbuf_new()) == NULL)
71 if ((r = sshkey_private_to_fileblob(key, keyblob, passphrase, comment,
74 if ((r = sshkey_save_private_blob(keyblob, filename)) != 0)
78 sshbuf_free(keyblob);
ssh-add.c 282 struct sshbuf *keyblob; local
302 if ((r = sshbuf_load_fd(fd, &keyblob)) != 0) {
305 sshbuf_free(keyblob);
312 if ((r = sshkey_parse_private_fileblob(keyblob, "", &private,
320 if ((r = sshkey_parse_private_fileblob(keyblob, pass, &private,
336 if ((r = sshkey_parse_private_fileblob(keyblob, pass,
345 sshbuf_free(keyblob);
356 sshbuf_free(keyblob);
ssh-pkcs11.c 75 struct sshbuf *keyblob; member in struct:pkcs11_key
188 sshbuf_free(k11->keyblob);
398 /* record the key information later use lookup by keyblob */
403 struct sshbuf *keyblob; local
413 if ((keyblob = sshbuf_new()) == NULL)
415 if ((r = sshkey_putb(key, keyblob)) != 0)
420 if (sshbuf_equals(k11->keyblob, keyblob) == 0) {
426 sshbuf_free(keyblob);
433 k11->keyblob = keyblob
452 struct sshbuf *keyblob; local
    [all...]
sshconnect2.c 2177 u_char *sig = NULL, *keyblob = NULL; local
2252 if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) {
2262 (r = sshbuf_put_string(b, keyblob, keylen)) != 0 ||
2283 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
2296 free(keyblob);
  /src/crypto/external/apache2/openssl/dist/include/internal/
bio.h 74 #define BIO_set_ktls(b, keyblob, is_tx) \
75 BIO_ctrl(b, BIO_CTRL_SET_KTLS, is_tx, keyblob)
  /src/crypto/external/bsd/openssl/dist/include/internal/
bio.h 67 # define BIO_set_ktls(b, keyblob, is_tx) \
68 BIO_ctrl(b, BIO_CTRL_SET_KTLS, is_tx, keyblob)
  /src/crypto/external/bsd/openssl/dist/providers/implementations/encode_decode/
encode_key2any.c 765 unsigned char *keyblob; local
772 keyblob = OPENSSL_memdup(ecxkey->pubkey, ecxkey->keylen);
773 if (keyblob == NULL) {
778 *pder = keyblob;
  /src/crypto/external/apache2/openssl/dist/providers/implementations/encode_decode/
encode_key2any.c 785 unsigned char *keyblob; local
792 keyblob = OPENSSL_memdup(ecxkey->pubkey, ecxkey->keylen);
793 if (keyblob == NULL)
796 *pder = keyblob;
  /src/crypto/external/apache2/openssl/dist/test/
tls-provider.c 1651 unsigned char *keyblob; local
1659 keyblob = OPENSSL_memdup(xorxkey->pubkey, retlen = XOR_KEY_SIZE);
1660 if (keyblob == NULL) {
1665 *pder = keyblob;

Completed in 100 milliseconds