Searched refs:blobp (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/crypto/openssh/
H A Dkey.c109 key_to_blob(const Key *key, u_char **blobp, u_int *lenp) argument
115 if (blobp != NULL)
116 *blobp = NULL;
126 if (blobp != NULL)
127 *blobp = blob;
H A Dsshkey.c827 to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp, int force_plain) argument
835 if (blobp != NULL)
836 *blobp = NULL;
844 if (blobp != NULL) {
845 if ((*blobp = malloc(len)) == NULL) {
849 memcpy(*blobp, sshbuf_ptr(b), len);
858 sshkey_to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp) argument
860 return to_blob(key, blobp, lenp, 0);
864 sshkey_plain_to_blob(const struct sshkey *key, u_char **blobp, size_t *lenp) argument
866 return to_blob(key, blobp, len
[all...]

Completed in 104 milliseconds