Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dsshkey.c132 const struct sshkey_impl * const keyimpls[] = { variable
178 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type()
179 if (keyimpls[i]->type == type) in sshkey_impl_from_type()
180 return keyimpls[i]; in sshkey_impl_from_type()
190 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type_nid()
191 if (keyimpls[i]->type == type && in sshkey_impl_from_type_nid()
192 (keyimpls[i]->nid == 0 || keyimpls[i]->nid == nid)) in sshkey_impl_from_type_nid()
193 return keyimpls[i]; in sshkey_impl_from_type_nid()
255 for (i = 0; keyimpls[i] != NULL; i++) { in type_from_name()
256 impl = keyimpls[i]; in type_from_name()
[all …]