@hackage credential-store0.1.2
Library to access secure credential storage providers
Categories
License
Apache-2.0
Maintainer
blaze@ruddy.ru
Links
Versions
Installation
Dependencies (8)
- Win32 >=2.5.0.0
- base >=4.7 && <5
- bytestring
- containers
- cryptonite >=0.7
- dbus Show all…
Dependents (0)
credential-store
Windows and Linux credentials storage
Cross-platform library to access system-specific credential store.
Uses Windows CredRead/CredWrite/CredDelete API on Windows, DBus SecretStore API with gnome-keyring or kwallet as backends on Unix. MacOS is not supported yet.
Example usage:
withCredentialStore $ \store -> do
putCredential store credentialName credentialValue
v <- getCredential store credentialName
deleteCredential store credentialName