forked from r-lib/keyring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
53 lines (53 loc) · 1.49 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Package: keyring
Title: Access the System Credential Store from R
Version: 1.3.1.9000
Authors@R:
c(person(given = "Gábor", family = "Csárdi", role = c("aut", "cre"),
email = "[email protected]"),
person(given = "Alec", family = "Wong", role = "ctb"),
person("RStudio", role = "cph"))
Description: Platform independent 'API' to access the operating system's
credential store. Currently supports: 'Keychain' on 'macOS', Credential
Store on 'Windows', the Secret Service 'API' on 'Linux', and a simple,
platform independent store implemented with environment variables.
Additional storage back-ends can be added easily.
License: MIT + file LICENSE
URL: https://r-lib.github.io/keyring/index.html, https://github.com/r-lib/keyring#readme
BugReports: https://github.com/r-lib/keyring/issues
RoxygenNote: 7.2.1
Roxygen: list(markdown = TRUE, r6 = FALSE)
Imports:
assertthat,
askpass,
openssl,
R6,
utils,
sodium,
yaml,
filelock,
rappdirs,
tools
Suggests:
callr,
covr,
mockery,
paws,
testthat,
withr
Encoding: UTF-8
SystemRequirements: Optional: libsecret on Linux (libsecret-1-dev on
Debian/Ubuntu, libsecret-devel on Fedora/CentOS)
Collate:
'api.R'
'assertions.R'
'backend-class.R'
'backend-awssecretsmanager.R'
'backend-env.R'
'backend-file.R'
'backend-macos.R'
'backend-secret-service.R'
'backend-wincred.R'
'default_backend.R'
'package.R'
'pass.R'
'utils.R'