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

  /src/crypto/external/bsd/openssh/dist/
authfile.c 71 struct sshbuf *keyblob = NULL; local
74 if ((keyblob = sshbuf_new()) == NULL)
76 if ((r = sshkey_private_to_fileblob(key, keyblob, passphrase, comment,
79 if ((r = sshkey_save_private_blob(keyblob, filename)) != 0)
83 sshbuf_free(keyblob);
ssh-pkcs11-client.c 83 struct sshbuf *keyblob = NULL; local
86 if ((keyblob = sshbuf_new()) == NULL)
88 if ((r = sshkey_putb(key, keyblob)) != 0)
95 if (sshbuf_equals(keyblob,
97 sshbuf_free(keyblob);
102 sshbuf_free(keyblob);
467 struct sshbuf *keyblob = NULL; local
475 if ((keyblob = sshbuf_new()) == NULL)
477 if ((r = sshkey_putb(key, keyblob)) != 0)
482 if (sshbuf_equals(keyblob, helper->keyblobs[i]) == 0)
    [all...]
ssh-add.c 267 struct sshbuf *keyblob; local
287 if ((r = sshbuf_load_fd(fd, &keyblob)) != 0) {
290 sshbuf_free(keyblob);
297 if ((r = sshkey_parse_private_fileblob(keyblob, "", &private,
305 if ((r = sshkey_parse_private_fileblob(keyblob, pass, &private,
321 if ((r = sshkey_parse_private_fileblob(keyblob, pass,
330 sshbuf_free(keyblob);
341 sshbuf_free(keyblob);
ssh-pkcs11.c 76 struct sshbuf *keyblob; member in struct:pkcs11_key
189 sshbuf_free(k11->keyblob);
399 /* record the key information later use lookup by keyblob */
404 struct sshbuf *keyblob; local
414 if ((keyblob = sshbuf_new()) == NULL)
416 if ((r = sshkey_putb(key, keyblob)) != 0)
421 if (sshbuf_equals(k11->keyblob, keyblob) == 0) {
427 sshbuf_free(keyblob);
434 k11->keyblob = keyblob
453 struct sshbuf *keyblob; local
    [all...]
sshconnect2.c 2165 u_char *sig = NULL, *keyblob = NULL; local
2240 if ((r = sshkey_to_blob(private, &keyblob, &keylen)) != 0) {
2250 (r = sshbuf_put_string(b, keyblob, keylen)) != 0 ||
2271 (r = sshpkt_put_string(ssh, keyblob, keylen)) != 0 ||
2284 free(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/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/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 31 milliseconds