Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

keychain support only works for login.keychain #2220

Closed
cyberduck opened this issue Jun 15, 2008 · 2 comments
Closed

keychain support only works for login.keychain #2220

cyberduck opened this issue Jun 15, 2008 · 2 comments
Assignees
Milestone

Comments

@cyberduck
Copy link
Collaborator

anonymous created the issue

the keychain support in cyberduck (all versions) seems to work only with passwords stored in the login.keychain. if you move your network passwords to a separate keychain, cyberduck won't find them anymore though the keychain is unlocked.

@cyberduck
Copy link
Collaborator Author

anonymous commented

this could be easily fixed by using a simple applescript to retrieve the passwords correctly:

set theName to "thekey"
tell application "Keychain Scripting"
set kcs to every keychain
repeat with kc in kcs
set kys to every key of kc
repeat with ky in kys
if name of ky is theName then
return password of ky
end if
end repeat
end repeat
return ""
end tell

@cyberduck
Copy link
Collaborator Author

@dkocher commented

#2001.

@iterate-ch iterate-ch locked as resolved and limited conversation to collaborators Nov 26, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants