Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/utils/analyzer/
H A DCmpRuns.py502 old_keys = set(stats_old.keys())
504 keys = sorted(old_keys & new_keys)
528 removed_keys = old_keys - new_keys
532 added_keys = new_keys - old_keys
/netbsd-src/crypto/external/bsd/openssh/dist/
H A Dclientloop.c2047 struct sshkey **old_keys; member
2070 sshkey_free(ctx->old_keys[i]); in hostkeys_update_ctx_free()
2071 free(ctx->old_keys); in hostkeys_update_ctx_free()
2172 if ((tmp = recallocarray(ctx->old_keys, ctx->nold, ctx->nold + 1, in hostkeys_find()
2173 sizeof(*ctx->old_keys))) == NULL) in hostkeys_find()
2175 ctx->old_keys = tmp; in hostkeys_find()
2176 ctx->old_keys[ctx->nold++] = l->key; in hostkeys_find()
2196 if (!sshkey_equal(l->key, ctx->old_keys[i])) in hostkeys_check_old()
2199 sshkey_ssh_name(ctx->old_keys[i]), l->path, l->linenum, in hostkeys_check_old()
2271 if ((fp = sshkey_fingerprint(ctx->old_keys[i], in update_known_hosts()
[all …]