Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dsshkey.c118 const struct sshkey_impl * const keyimpls[] = { variable
157 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type()
158 if (keyimpls[i]->type == type) in sshkey_impl_from_type()
159 return keyimpls[i]; in sshkey_impl_from_type()
169 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type_nid()
170 if (keyimpls[i]->type == type && in sshkey_impl_from_type_nid()
171 (keyimpls[i]->nid == 0 || keyimpls[i]->nid == nid)) in sshkey_impl_from_type_nid()
172 return keyimpls[i]; in sshkey_impl_from_type_nid()
234 for (i = 0; keyimpls[i] != NULL; i++) { in type_from_name()
235 impl = keyimpls[i]; in type_from_name()
[all …]