Home
last modified time | relevance | path

Searched refs:host_key (Results 1 – 25 of 283) sorted by relevance

12345678910>>...12

/dports/security/pam_ssh/pam_ssh-8.0/openssh/
H A Dsshconnect.c774 type = sshkey_type(host_key); in check_host_key()
826 fp = sshkey_fingerprint(host_key, in check_host_key()
828 ra = sshkey_fingerprint(host_key, in check_host_key()
923 hostline, host_key, in check_host_key()
994 warn_changed_key(host_key); in check_host_key()
1135 host_key = raw_key; in check_host_key()
1164 if (sshkey_is_cert(host_key)) { in verify_host_key()
1178 host_key->cert->key_id, in verify_host_key()
1204 sshkey_type(host_key), fp, in verify_host_key()
1253 if (r == 0 && host_key != NULL) { in verify_host_key()
[all …]
/dports/security/openssh-portable/openssh-8.8p1/
H A Dsshconnect.c854 if (host_key != NULL) { in load_hostkeys_command()
883 "t", host_key == NULL ? "NONE" : sshkey_ssh_name(host_key), in load_hostkeys_command()
1004 type = sshkey_type(host_key); in check_host_key()
1111 host_key, ROQUIET, 1, in check_host_key()
1196 hostline, host_key, in check_host_key()
1267 warn_changed_key(host_key); in check_host_key()
1405 host_key = raw_key; in check_host_key()
1435 if (sshkey_is_cert(host_key)) { in verify_host_key()
1448 host_key->cert->key_id, in verify_host_key()
1461 sshkey_type(host_key), fp); in verify_host_key()
[all …]
/dports/security/ncrack/ncrack-0.7/opensshlib/
H A Dsshconnect.c832 Key *host_key, int readonly,
897 want_cert = key_is_cert(host_key);
898 type = key_type(host_key);
1042 hostline, host_key,
1112 warn_changed_key(host_key);
1247 host_key = raw_key;
1277 compat20 ? sshkey_ssh_name(host_key) : sshkey_type(host_key), fp);
1294 sshkey_type(host_key), fp,
1342 if (r == 0 && host_key != NULL) {
1455 warn_changed_key(Key *host_key)
[all …]
/dports/security/gnome-ssh-askpass/openssh-6.6p1/
H A Dsshconnect1.c339 packet_put_bignum(host_key->rsa->e); in try_rhosts_rsa_authentication()
340 packet_put_bignum(host_key->rsa->n); in try_rhosts_rsa_authentication()
486 Key *host_key, *server_key; in ssh_kex() local
517 host_key = key_new(KEY_RSA1); in ssh_kex()
519 packet_get_bignum(host_key->rsa->e); in ssh_kex()
520 packet_get_bignum(host_key->rsa->n); in ssh_kex()
522 rbits = BN_num_bits(host_key->rsa->n); in ssh_kex()
587 if (BN_num_bits(host_key->rsa->n) < in ssh_kex()
591 BN_num_bits(host_key->rsa->n), in ssh_kex()
604 BN_num_bits(host_key->rsa->n), in ssh_kex()
[all …]
H A Dsshconnect.c802 Key *host_key, int readonly, in check_host_key() argument
866 want_cert = key_is_cert(host_key); in check_host_key()
867 type = key_type(host_key); in check_host_key()
907 host_key, options.hash_known_hosts)) in check_host_key()
1003 hostline, host_key, in check_host_key()
1073 warn_changed_key(host_key); in check_host_key()
1199 raw_key = key_from_private(host_key); in check_host_key()
1202 host_key = raw_key; in check_host_key()
1240 warn_changed_key(host_key); in verify_host_key()
1348 warn_changed_key(Key *host_key) in warn_changed_key() argument
[all …]
/dports/sysutils/vector/vector-0.10.0/src/sources/socket/
H A Dunix.rs19 pub host_key: Option<String>, field
31 host_key: None, in new()
40 fn build_event(host_key: &str, received_from: Option<Bytes>, line: &str) -> Option<Event> { in build_event()
47 event.as_mut_log().insert(host_key, host); in build_event()
56 host_key: String, in unix()
63 host_key, in unix()
H A Dudp.rs21 pub host_key: Option<Atom>, field
28 host_key: None, in new()
35 host_key: Atom, in udp()
50 let host_key = host_key.clone(); in udp() localVariable
65 .insert(host_key.clone(), addr.to_string()); in udp()
H A Dtcp.rs21 pub host_key: Option<Atom>, field
38 host_key: None, in new()
65 let host_key = if let Some(key) = &self.config.host_key { in build_event() localVariable
68 &event::log_schema().host_key() in build_event()
71 event.as_mut_log().insert(host_key.clone(), host); in build_event()
/dports/security/py-asyncssh/asyncssh-2.8.1/tests/
H A Dtest_kex.py312 host_key = server_conn.get_server_host_key()
463 host_key = server_conn.get_server_host_key()
468 host_key = server_conn.get_server_host_key()
470 client_conn.simulate_ecdh_reply(host_key.public_data,
490 host_key = server_conn.get_server_host_key()
495 host_key = server_conn.get_server_host_key()
502 host_key = server_conn.get_server_host_key()
524 host_key = server_conn.get_server_host_key()
529 host_key = server_conn.get_server_host_key()
536 host_key = server_conn.get_server_host_key()
[all …]
/dports/sysutils/vector/vector-0.10.0/src/sources/
H A Dstdin.rs31 pub host_key: Option<String>, field
38 host_key: None, in default()
107 let host_key = config in stdin_source() localVariable
108 .host_key in stdin_source()
109 .unwrap_or_else(|| event::log_schema().host_key().to_string()); in stdin_source()
166 .map(move |line| create_event(line, &host_key, &hostname)) in stdin_source()
175 fn create_event(line: Bytes, host_key: &str, hostname: &Option<String>) -> Event { in create_event()
184 event.as_mut_log().insert(host_key, hostname.clone()); in create_event()
201 let host_key = "host".to_string(); in stdin_create_event() localVariable
204 let event = create_event(line, &host_key, &hostname); in stdin_create_event()
H A Dsyslog.rs38 pub host_key: Option<String>, field
65 host_key: None, in new()
84 let host_key = self in build() localVariable
85 .host_key in build()
93 host_key, in build()
104 host_key, in build()
124 host_key: String, field
249 host_key: String, in udp()
268 let host_key = host_key.clone(); in udp() localVariable
273 let host_key = host_key.clone(); in udp() localVariable
[all …]
/dports/security/py-ssh/ssh-1.8.0/tests/
H A Dtest_client.py78 host_key = ssh.RSAKey.from_private_key_file('tests/test_rsa.key')
79 self.ts.add_server_key(host_key)
88 host_key = ssh.RSAKey.from_private_key_file('tests/test_rsa.key')
89 public_host_key = ssh.RSAKey(data=str(host_key))
121 host_key = ssh.RSAKey.from_private_key_file('tests/test_rsa.key')
122 public_host_key = ssh.RSAKey(data=str(host_key))
154 host_key = ssh.RSAKey.from_private_key_file('tests/test_rsa.key')
155 public_host_key = ssh.RSAKey(data=str(host_key))
171 host_key = ssh.RSAKey.from_private_key_file('tests/test_rsa.key')
172 public_host_key = ssh.RSAKey(data=str(host_key))
[all …]
/dports/sysutils/vector/vector-0.10.0/website/highlights/
H A D2020-02-14-global-log-schema.md23 [`host_key`][docs.global-options#host_key],
24 [`timestamp_key`][docs.global-options#host_key], and more:
28 host_key = "host" # default
38 [`host_key`][docs.global-options#host_key] is used in a variety of
43 [docs.global-options#host_key]: /docs/reference/global-options/#host_key
H A D2020-03-12-rename-host_field-to-host_key.md4 title: "The `splunk_hec` source's `host_field` option has been renamed to `host_key`"
5 description: "This change ensures that the `host_key` option is consistent across all sources"
13 We've renamed the [`splunk_hec` source's] `host_field` option to `host_key`.
14 This ensures that the `host_key` option is consistent across all sources.
22 + host_key = "host"
/dports/security/py-paramiko/paramiko-2.7.2/tests/
H A Dtest_client.py169 self.ts.add_server_key(host_key)
172 self.ts.add_server_key(host_key)
190 host_key = paramiko.RSAKey.from_private_key_file(
374 host_key = paramiko.RSAKey.from_private_key_file(
555 def _client_host_key_bad(self, host_key): argument
562 known_hosts.add(hostname, host_key.get_name(), host_key)
579 known_hosts.add(hostname, host_key.get_name(), host_key)
588 host_key = paramiko.ECDSAKey.generate()
589 self._client_host_key_bad(host_key)
592 host_key = paramiko.RSAKey.generate(2048)
[all …]
/dports/sysutils/vector/vector-0.10.0/website/docs/reference/sources/
H A Dstdin.md57 host_key = "host" # optional, default
70 name={"host_key"}
80 ### host_key subsection
83 be globally set via the [global [`host_key`](#host_key)
84 option][docs.reference.global-options#host_key].
221 keys to your events via the [`host_key`](#host_key)
239 [docs.reference.global-options#host_key]: /docs/reference/global-options/#host_key
/dports/security/py-paramiko/paramiko-2.7.2/paramiko/
H A Dkex_gss.py162 host_key = m.get_string()
163 self.transport.host_key = host_key
165 self.transport._verify_key(host_key, sig)
199 if self.transport.host_key is None:
248 self.transport.host_key = NullHostKey()
249 key = self.transport.host_key.__str__()
506 self.transport.host_key = NullHostKey()
562 host_key = m.get_string()
563 self.transport.host_key = host_key
596 if self.transport.host_key is None:
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/app/controllers/import/
H A Dgitea_controller.rb15 session[host_key] = params[host_key]
33 def host_key method in GiteaController
39 session[host_key]
/dports/security/py-asyncssh/asyncssh-2.8.1/asyncssh/
H A Dkex_rsa.py60 host_key = self._conn.get_server_host_key()
61 self._host_key_data = host_key.public_data
117 host_key = self._conn.get_server_host_key()
120 sig = host_key.sign(h)
135 host_key = self._conn.validate_server_host_key(self._host_key_data)
138 if not host_key.verify(h, sig):
/dports/security/libssh/libssh-0.9.6/tests/server/test_server/
H A Dmain.c51 char *host_key;
79 SAFE_FREE(arguments->host_key);
161 state->host_key? state->host_key: "NULL");
240 if (arguments->host_key) {
241 state->host_key = arguments->host_key;
242 arguments->host_key = NULL;
244 state->host_key = NULL;
504 arguments->host_key = strdup(arg);
505 if (arguments->host_key == NULL) {
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/base/
H A Dproxy_server_mac.cc20 CFStringRef host_key, in FromDictionary() argument
28 base::mac::GetValueFromDictionary<CFStringRef>(dict, host_key); in FromDictionary()
31 << base::SysCFStringRefToUTF8(host_key) in FromDictionary()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/base/
H A Dproxy_server_mac.cc20 CFStringRef host_key, in FromDictionary() argument
28 base::mac::GetValueFromDictionary<CFStringRef>(dict, host_key); in FromDictionary()
31 << base::SysCFStringRefToUTF8(host_key) in FromDictionary()
/dports/sysutils/cfengine-devel/core-d08ae9eff/contrib/enterprise/
H A Ddecomission_duplicate_hosts.pl106 my $host_key = $row->[0];
114 $keys{$host_key}->{$server}->{first_report} = $first_report;
115 $keys{$host_key}->{$server}->{hostname} = $hostname;
116 $keys{$host_key}->{$server}->{report_timestamp} = $report_timestamp;
117 $keys{$host_key}->{$server}->{ip_address} = $ip_address;
/dports/sysutils/vector/vector-0.10.0/src/sources/util/
H A Dunix.rs26 host_key: String, in build_unix_source()
49 let host_key = host_key.clone(); in build_unix_source() localVariable
70 build_event(&host_key, received_from.clone(), &line) in build_unix_source()
/dports/net/guacamole-server/guacamole-server-1.3.0/src/common-ssh/
H A Dkey.c250 const char* host_key, const char* hostname, int port, const char* remote_hostkey, in guac_common_ssh_verify_host_key() argument
257 if (host_key && strcmp(host_key, "") != 0) { in guac_common_ssh_verify_host_key()
259 known_hosts = libssh2_knownhost_readline(ssh_known_hosts, host_key, strlen(host_key), in guac_common_ssh_verify_host_key()

12345678910>>...12