HomeSort by: relevance | last modified time | path
    Searched defs:host_certificates (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
sshd-auth.c 145 struct sshkey **host_certificates; /* all public host certificates */ variable in typeref:struct:sshkey
279 key = host_certificates[i];
318 key = host_certificates[i];
370 if (key == host_certificates[i] ||
371 (compare && host_certificates[i] &&
372 sshkey_equal(key, host_certificates[i])))
411 host_certificates = xrecallocarray(host_certificates,
412 num_keys, num_keys + 1, sizeof(*host_certificates));
428 host_certificates[num_keys] = k
    [all...]
sshd-session.c 189 struct sshkey **host_certificates; /* all public host certificates */ member in struct:__anon1
271 if (sensitive_data.host_certificates[i]) {
272 sshkey_free(sensitive_data.host_certificates[i]);
273 sensitive_data.host_certificates[i] = NULL;
321 if (sensitive_data.host_certificates[i] != NULL) {
323 sensitive_data.host_certificates[i],
457 key = sensitive_data.host_certificates[i];
518 if (key == sensitive_data.host_certificates[i] ||
519 (compare && sensitive_data.host_certificates[i] &&
521 sensitive_data.host_certificates[i]))
    [all...]
sshd.c 141 struct sshkey **host_certificates; /* all public host certificates */ member in struct:__anon193
693 if (sensitive_data.host_certificates[i] != NULL) {
695 sensitive_data.host_certificates[i],
1653 sensitive_data.host_certificates = xcalloc(options.num_host_key_files,
1656 sensitive_data.host_certificates[i] = NULL;
1677 sensitive_data.host_certificates[j] = key;
1687 sensitive_data.host_certificates[j] = key;

Completed in 22 milliseconds