search for: nidentity_fil

Displaying 2 results from an estimated 2 matches for "nidentity_fil".

Did you mean: identity_file
2025 Apr 29
1
Multiple allowed signer files in `ssh-keygen -Y verify`
...index 9aac967..0b0587d 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -91,6 +91,10 @@ static int fingerprint_hash = SSH_FP_HASH_DEFAULT; static char identity_file[PATH_MAX]; static int have_identity = 0; +/* Some operations accept multiple files */ +static char **identity_files; +static size_t nidentity_files; + /* This is set to the passphrase if given on the command line. */ static char *identity_passphrase = NULL; @@ -2803,16 +2807,17 @@ done: static int sig_verify(const char *signature, const char *sig_namespace, - const char *principal, const char *allowed_keys, const char *revoked_key...
2025 Apr 23
1
Multiple allowed signer files in `ssh-keygen -Y verify`
Hello, I'm currently evaluating using `ssh-keygen -Y verify` to check OS artifacts (e.g. packages) and I noticed that the `-f allowed_signers_file` option can be passed only once. A side remark: technically it can be passed multiple times without a warning but the last invocation overrides all previous ones. Tested using: $ ssh-keygen -Y verify -f allowed_signers -f /dev/null -n file -s