credential-store

Cross-platform library for storing secrets. Uses Windows credential store, gnome-keyring or kwallet as backends.


Keywords
apache, desktop, library, program, Propose Tags , System.CredentialStore
License
Apache-2.0
Install
cabal install credential-store-0.1.0.0

Documentation

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