Home | History | Annotate | Download | only in dist

Lines Matching defs:keyblob

76 	struct sshbuf		*keyblob;
189 sshbuf_free(k11->keyblob);
399 /* record the key information later use lookup by keyblob */
404 struct sshbuf *keyblob;
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;
448 /* retrieve the key information by keyblob */
453 struct sshbuf *keyblob;
456 if ((keyblob = sshbuf_new()) == NULL)
458 if ((r = sshkey_putb(key, keyblob)) != 0)
461 if (sshbuf_equals(k11->keyblob, keyblob) == 0) {
466 sshbuf_free(keyblob);