Popularity
1.9
Declining
Activity
0.0
Stable
1
3
0

Monthly Downloads: 13
Programming language: Haskell
License: Apache License 2.0
Tags: Desktop     Other    
Latest version: v0.1.2

credential-store alternatives and similar packages

Based on the "Desktop" category.
Alternatively, view credential-store alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of credential-store or a related project?

Add another 'Desktop' Package

README

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