Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dsshkey.c122 const struct sshkey_impl * const keyimpls[] = { variable
165 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type()
166 if (keyimpls[i]->type == type) in sshkey_impl_from_type()
167 return keyimpls[i]; in sshkey_impl_from_type()
177 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type_nid()
178 if (keyimpls[i]->type == type && in sshkey_impl_from_type_nid()
179 (keyimpls[i]->nid == 0 || keyimpls[i]->nid == nid)) in sshkey_impl_from_type_nid()
180 return keyimpls[i]; in sshkey_impl_from_type_nid()
242 for (i = 0; keyimpls[i] != NULL; i++) { in type_from_name()
243 impl = keyimpls[i]; in type_from_name()
[all …]