Home
last modified time | relevance | path

Searched refs:certblob (Results 1 – 2 of 2) sorted by relevance

/external/openssh/
Dsshkey.c440 if (cert->certblob != NULL) in cert_free()
441 sshbuf_free(cert->certblob); in cert_free()
465 if ((cert->certblob = sshbuf_new()) == NULL || in cert_new()
672 if (sshbuf_len(a->certblob) != sshbuf_len(b->certblob)) in cert_compare()
674 if (timingsafe_bcmp(sshbuf_ptr(a->certblob), sshbuf_ptr(b->certblob), in cert_compare()
675 sshbuf_len(a->certblob)) != 0) in cert_compare()
778 if ((ret = sshbuf_putb(b, key->cert->certblob)) != 0) in to_blob_buf()
1425 if (sshbuf_len(key->cert->certblob) == 0) in sshkey_write()
1727 if ((ret = sshbuf_putb(to->certblob, from->certblob)) != 0 || in sshkey_cert_copy()
1855 if ((ret = sshbuf_putb(key->cert->certblob, certbuf)) != 0) in cert_parse()
[all …]
Dsshkey.h88 struct sshbuf *certblob; /* Kept around for use on wire */ member