├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS ├── R ├── encrypt.R ├── keygen.R ├── keys.R ├── onload.R ├── password.R ├── restart.R └── signing.R ├── README.md ├── api.R ├── cleanup ├── configure ├── configure.win ├── gpg.Rproj ├── man ├── gpg_encrypt.Rd ├── gpg_info.Rd ├── gpg_keygen.Rd ├── gpg_keys.Rd ├── gpg_sign.Rd └── pinentry.Rd ├── src ├── Makevars.in ├── Makevars.ucrt ├── Makevars.win ├── common.h ├── encrypt.c ├── engine.c ├── keys.c ├── keysig.c ├── options.c ├── register.c └── sign.c ├── tools ├── gpgwin.R └── winlibs.R └── vignettes ├── intro.Rmd └── intro.Rmd.in /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Jeroen Ooms 3 | 4 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/NEWS -------------------------------------------------------------------------------- /R/encrypt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/encrypt.R -------------------------------------------------------------------------------- /R/keygen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/keygen.R -------------------------------------------------------------------------------- /R/keys.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/keys.R -------------------------------------------------------------------------------- /R/onload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/onload.R -------------------------------------------------------------------------------- /R/password.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/password.R -------------------------------------------------------------------------------- /R/restart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/restart.R -------------------------------------------------------------------------------- /R/signing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/R/signing.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/README.md -------------------------------------------------------------------------------- /api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/api.R -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -f src/Makevars configure.log autobrew 3 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpg.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/gpg.Rproj -------------------------------------------------------------------------------- /man/gpg_encrypt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/man/gpg_encrypt.Rd -------------------------------------------------------------------------------- /man/gpg_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/man/gpg_info.Rd -------------------------------------------------------------------------------- /man/gpg_keygen.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/man/gpg_keygen.Rd -------------------------------------------------------------------------------- /man/gpg_keys.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/man/gpg_keys.Rd -------------------------------------------------------------------------------- /man/gpg_sign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/man/gpg_sign.Rd -------------------------------------------------------------------------------- /man/pinentry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/man/pinentry.Rd -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.ucrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/Makevars.ucrt -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/common.h -------------------------------------------------------------------------------- /src/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/encrypt.c -------------------------------------------------------------------------------- /src/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/engine.c -------------------------------------------------------------------------------- /src/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/keys.c -------------------------------------------------------------------------------- /src/keysig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/keysig.c -------------------------------------------------------------------------------- /src/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/options.c -------------------------------------------------------------------------------- /src/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/register.c -------------------------------------------------------------------------------- /src/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/src/sign.c -------------------------------------------------------------------------------- /tools/gpgwin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/tools/gpgwin.R -------------------------------------------------------------------------------- /tools/winlibs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/tools/winlibs.R -------------------------------------------------------------------------------- /vignettes/intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/vignettes/intro.Rmd -------------------------------------------------------------------------------- /vignettes/intro.Rmd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/gpg/HEAD/vignettes/intro.Rmd.in --------------------------------------------------------------------------------