search for: keylist

Displaying 6 results from an estimated 6 matches for "keylist".

Did you mean: key_list
2005 Jul 26
1
Linux in-kernel keys support
...name); + return 0; + } +#endif public = key_load_public(filename, &comment); if (public == NULL) { printf("Bad key file %s\n", filename); @@ -108,6 +134,65 @@ { int ret = -1; +#ifdef HAVE_LIBKEYUTIL + if (inkernel) { + int count, dlen; + char *buf; + key_serial_t key, *keylist, *pk; + + count = keyctl_read_alloc(KEY_SPEC_USER_SESSION_KEYRING, (void **) &keylist); + if (count < 0) { + printf("Error in keyctl_read_alloc\n"); + return -1; + } + + count /= sizeof(key_serial_t); + pk = keylist; + ret = 0; + while (count--) { + key = *pk++; + +...
2016 Aug 10
3
Feature request for ssh-add
Ajay Ramjatan asks if it would be ok to have: A config file that contains list of DSA/RSA/ED25519 entries to be added, when run by default. Currently According to the man page: " Alternative file names can be given on the command line. If any file requires a passphrase, ssh-add asks for the passphrase from the user. " Instead of specifying each key file, a single file such as .config
2002 Jul 28
1
feature request
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 for the ssh-add program it would be nice to have it add keys listed in a plain text file. such as a file ~/.ssh/keylist I looked at the code but I do not know how to code c, I could learn but I thought to ask the devlopers first :-P thank you guys Steven Michalske -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (GNU/Linux) iD8DBQE9Q1VeJhwOdxS4dYERAva3AJ4wmPpjhEm+uaEFyPsNbj/eSkzIgwCeKIMd LqverpKqsylezO52Bd7N...
2007 Feb 20
2
SAMBA Kerberos misunderstanding
...foundry$ root@foundry:~ # kinit -k -t /etc/krb5.keytab host/foundry.example.local kinit(v5): Client not found in Kerberos database while getting initial credentials Why can't kinit find the service host/foundry.example.local in the AD Kerberos database? It seems to be in the local linux server keylist: root@foundry:~ # klist -k Keytab name: FILE:/etc/krb5.keytab KVNO Principal ---- -------------------------------------------------------------------------- 2 host/foundry.example.local@EXAMPLE.LOCAL 2 host/foundry.example.local@EXAMPLE.LOCAL .... cut ... What am I missing here? Thanks, B...
2012 Aug 08
0
[Announce] GPA 0.9.3 released
...g/gcrypt/gpa/gpa-0.9.3.tar.bz2.sig and soon on all gnupg.org mirrors. The SHA1 checksum for this release is: 8dc810e465ec49cd8353d93b3ede8e69ad3cf48b gpa-0.9.3.tar.bz2 Noteworthy changes in version 0.9.3 (2012-08-08) ------------------------------------------------ * Allow searching in the keylist. * Collected bug fixes. Noteworthy changes in version 0.9.2 (2012-05-02) ------------------------------------------------ * Adjust server mode to modern Libassuan. * Add options --enable-logging for W32. * Add options --gpg-binary, --gpgsm-binary and --debug-edit-fsm. * Properly process...
2007 Jan 23
20
"Found a bug" message when purging services
I attempted the following: resources { service: purge => true, noop => true } service { sshd: ensure => running; iptables ensure => running; } And got the following message: notice: Starting configuration run err: Found a bug: uninitialized constant Parse notice: Finished configuration run in 0.47 seconds When I remove the ''resources'' line, everything works