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

  /src/crypto/external/bsd/openssh/dist/
sshd-session.c 190 } sensitive_data; variable in typeref:struct:__anon1
267 if (sensitive_data.host_keys[i]) {
268 sshkey_free(sensitive_data.host_keys[i]);
269 sensitive_data.host_keys[i] = NULL;
271 if (sensitive_data.host_certificates[i]) {
272 sshkey_free(sensitive_data.host_certificates[i]);
273 sensitive_data.host_certificates[i] = NULL;
287 if (sensitive_data.host_keys[i]) {
289 sensitive_data.host_keys[i], &tmp)) != 0)
291 sshkey_type(sensitive_data.host_keys[i]))
    [all...]
sshd.c 143 } sensitive_data; variable in typeref:struct:__anon193
677 if (sensitive_data.host_keys[i] != NULL &&
678 (r = sshkey_private_serialize(sensitive_data.host_keys[i],
684 if (sensitive_data.host_pubkeys[i] != NULL) {
685 if ((r = sshkey_puts(sensitive_data.host_pubkeys[i],
693 if (sensitive_data.host_certificates[i] != NULL) {
695 sensitive_data.host_certificates[i],
1474 sensitive_data.have_ssh2_key = 0;
1545 sensitive_data.host_keys = xcalloc(options.num_host_key_files,
1547 sensitive_data.host_pubkeys = xcalloc(options.num_host_key_files
    [all...]
ssh.c 147 Sensitive sensitive_data; variable
1696 sensitive_data.nkeys = 0;
1697 sensitive_data.keys = NULL;
1701 sensitive_data.nkeys = 10;
1702 sensitive_data.keys = xcalloc(sensitive_data.nkeys,
1703 sizeof(*sensitive_data.keys));
1707 if ((o) >= sensitive_data.nkeys) \
1709 check_load(sshkey_load_public(p, &(sensitive_data.keys[o]), NULL), \
1710 &(sensitive_data.keys[o]), p, "hostbased pubkey");
    [all...]

Completed in 29 milliseconds