├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS ├── R ├── credential-api.R ├── credential-helpers.R ├── github-pat.R ├── http-credential.R ├── onattach.R └── ssh-keys.R ├── README.md ├── appveyor.yml ├── credentials.Rproj ├── inst ├── WORDLIST └── ask_token.sh ├── man ├── credential_api.Rd ├── credential_helper.Rd ├── figures │ └── logo.png ├── http_credentials.Rd ├── set_github_pat.Rd └── ssh_credentials.Rd └── vignettes ├── .gitignore ├── intro.Rmd ├── intro.Rmd.in ├── keygen.png └── wincred.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/NEWS -------------------------------------------------------------------------------- /R/credential-api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/R/credential-api.R -------------------------------------------------------------------------------- /R/credential-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/R/credential-helpers.R -------------------------------------------------------------------------------- /R/github-pat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/R/github-pat.R -------------------------------------------------------------------------------- /R/http-credential.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/R/http-credential.R -------------------------------------------------------------------------------- /R/onattach.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/R/onattach.R -------------------------------------------------------------------------------- /R/ssh-keys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/R/ssh-keys.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/appveyor.yml -------------------------------------------------------------------------------- /credentials.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/credentials.Rproj -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/ask_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/inst/ask_token.sh -------------------------------------------------------------------------------- /man/credential_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/man/credential_api.Rd -------------------------------------------------------------------------------- /man/credential_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/man/credential_helper.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/http_credentials.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/man/http_credentials.Rd -------------------------------------------------------------------------------- /man/set_github_pat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/man/set_github_pat.Rd -------------------------------------------------------------------------------- /man/ssh_credentials.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/man/ssh_credentials.Rd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/vignettes/intro.Rmd -------------------------------------------------------------------------------- /vignettes/intro.Rmd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/vignettes/intro.Rmd.in -------------------------------------------------------------------------------- /vignettes/keygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/vignettes/keygen.png -------------------------------------------------------------------------------- /vignettes/wincred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/credentials/HEAD/vignettes/wincred.png --------------------------------------------------------------------------------