Apache-2.0 licensed by Andrey Sverdlichenko
Maintained by [email protected]
This version can be pinned in stack with:credential-store-0.1.2@sha256:281e7396b3f360f4307e3491e2ec84f8d400ff9afc1fa92e5a9d776cad082f47,2110

Module documentation for 0.1.2

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