Searched refs:keyimpls (Results 1 – 1 of 1) sorted by relevance
135 const struct sshkey_impl * const keyimpls[] = { variable181 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type()182 if (keyimpls[i]->type == type) in sshkey_impl_from_type()183 return keyimpls[i]; in sshkey_impl_from_type()193 for (i = 0; keyimpls[i] != NULL; i++) { in sshkey_impl_from_type_nid()194 if (keyimpls[i]->type == type && in sshkey_impl_from_type_nid()195 (keyimpls[i]->nid == 0 || keyimpls[i]->nid == nid)) in sshkey_impl_from_type_nid()196 return keyimpls[i]; in sshkey_impl_from_type_nid()258 for (i = 0; keyimpls[i] != NULL; i++) { in type_from_name()259 impl = keyimpls[i]; in type_from_name()[all …]