Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dsshkey.c666 sshbuf_free(cert->certblob); in cert_free()
685 if ((cert->certblob = sshbuf_new()) == NULL || in cert_new()
812 if (sshbuf_len(a->certblob) != sshbuf_len(b->certblob)) in cert_compare()
814 if (timingsafe_bcmp(sshbuf_ptr(a->certblob), sshbuf_ptr(b->certblob), in cert_compare()
815 sshbuf_len(a->certblob)) != 0) in cert_compare()
889 if (sshbuf_len(key->cert->certblob) == 0) in to_blob_buf()
892 if ((ret = sshbuf_putb(b, key->cert->certblob)) != 0) in to_blob_buf()
1546 if ((r = sshbuf_putb(to->certblob, from->certblob)) != 0 || in sshkey_cert_copy()
1877 if ((ret = sshbuf_putb(key->cert->certblob, certbuf)) != 0) in cert_parse()
1897 signed_len = sshbuf_len(key->cert->certblob) - sshbuf_len(b); in cert_parse()
[all …]
H A Dsshkey.h105 struct sshbuf *certblob; /* Kept around for use on wire */ member