Keyring.jl

Author alecloudenback
Popularity
1 Star
Updated Last
7 Months Ago
Started In
May 2024

Keyring

Stable Dev Build Status

Provides access to system keystores.

Quickstart

using Keyring

set_credential("my_target", "my_username", "my_secret")

c = get_credential("my_target")

c.target # "my_target"
c.username # "my_username"
c.secret # "my_secret"

Supported platforms:

  • Windows

Inspired by

keyring (Python)