Coder Social home page Coder Social logo

keyring's Introduction

keyring

Access the System Credential Store from R

Linux Build Status Windows Build status CRAN RStudio mirror downloads Coverage Status

Platform independent API to access the operating systems credential store. Currently supports:

  • Keychain on macOS (backend_macos),
  • Credential Store on Windows (backend_wincred),
  • the Secret Service API on Linux (backend_secret_service),
  • encrypted files (backend_file), and
  • environment variables (backend_env). The last two are available on all platforms. Additional storage backends can be added easily.

Installation

Linux

Install the libsecret library, at least version 0.16.

  • Debian/Ubuntu: libsecret-1-dev
  • Recent RedHat, Fedora and CentOS systems: libsecret-devel

The file backend uses the sodium package:

  • Debian/Ubuntu: libsodium-dev
  • Fedora, EPEL: libsodium-devel

OS X and Windows

No additional software needed

R package

Install the package from CRAN:

install.packages("keyring")

Usage

Configuring an OS-specific backend:

  • The default is operating system specific, and is described in manual page of default_backend(). In most cases you don't have to configure this.
  • MacOS: backend_macos
  • Linux: backend_secret_service, if build with libsecret
  • Windows: backend_wincred
  • Or store the secrets in environment variables on other operating systems: backend_env

Should you need to change the default backend, set the R_KEYRING_BACKEND environment variable or the keyring_backend R option to the backend's name (e.g. env, file, etc.).

Query secret keys in a keyring:

Each keyring can contain one or many secrets (keys). A key is defined by a service name and a password. Once a key is defined, it persists in the keyring store of the operating system. This means the keys persist beyond the termination of and R session. Specifically, you can define a key once, and then read the key value in completely independent R sessions.

  • Setting a secret interactively: key_set()
  • Setting a secret from a script, i.e. non-interactively: key_set_with_value()
  • Reading a secret: key_get()
  • Listing secrets: key_list()
  • Deleting a secret: key_delete()

Managing keyrings:

A keyring is a collection of keys that can be treated as a unit. A keyring typically has a name and a password to unlock it. See keyring_create(), keyring_delete(), keyring_list(), keyring_lock(), keyring_unlock(), keyring_is_locked().

Note that all platforms have a default keyring, and key_get(), etc. will use that automatically. The default keyring is also convenient, because the OS unlocks it automatically when you log in, so secrets are available immediately.

You only need to explicitly deal with keyrings and the keyring_* functions if you want to use a different keyring.

Development documentation

Please see our writeup of some keyring internals, and as always, use the source code.

License

MIT © RStudio

keyring's People

Contributors

andrie avatar gaborcsardi avatar javierluraschi avatar jeroen avatar krlmlr avatar mikejohnpage avatar nbenn avatar ras44 avatar shrektan avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.