├── .Rbuildignore ├── .github ├── .gitignore ├── CODE_OF_CONDUCT.md └── workflows │ ├── R-CMD-check.yaml │ ├── dragonflybsd.yaml │ ├── freebsd.yaml │ ├── netbsd.yaml │ ├── openbsd.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── rhub-ci.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── aaa-import-standalone-rstudio-detect.R ├── aaassertthat.R ├── api.R ├── assertions.R ├── backend-class.R ├── backend-env.R ├── backend-file.R ├── backend-macos.R ├── backend-secret-service.R ├── backend-wincred.R ├── default_backend.R ├── keyring-package.R ├── mocks.R ├── package.R ├── pass.R ├── rappdirs.R ├── sodium.R ├── standalone-errors.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── cleanup ├── codecov.yml ├── configure ├── configure.win ├── inst ├── COPYRIGHTS └── development-notes.md ├── keyring.Rproj ├── man ├── b_wincred_decode.Rd ├── b_wincred_decode_auto.Rd ├── b_wincred_get.Rd ├── b_wincred_set_with_raw_value.Rd ├── backend.Rd ├── backend_env.Rd ├── backend_file.Rd ├── backend_keyrings.Rd ├── backend_macos.Rd ├── backend_secret_service.Rd ├── backend_wincred.Rd ├── backends.Rd ├── has_keyring_support.Rd ├── key_get.Rd └── keyring-package.Rd ├── src ├── Makevars.in ├── Makevars.win ├── aes.c ├── aesce.c ├── aesce.h ├── aesni.c ├── aesni.h ├── alignment.h ├── base64.c ├── blake2.h ├── blake2b-compress-ref.c ├── blake2b-ref.c ├── common.h ├── core_hsalsa20_ref2.c ├── core_salsa_ref.c ├── crypto_core_hsalsa20.h ├── crypto_core_salsa20.h ├── crypto_core_salsa2012.h ├── crypto_core_salsa208.h ├── crypto_generichash.c ├── crypto_generichash.h ├── crypto_generichash_blake2b.h ├── crypto_onetimeauth.h ├── crypto_onetimeauth_poly1305.h ├── crypto_secretbox.h ├── crypto_secretbox_easy.c ├── crypto_secretbox_xsalsa20poly1305.h ├── crypto_stream_salsa20.h ├── crypto_stream_xsalsa20.h ├── crypto_verify_16.h ├── crypto_verify_32.h ├── crypto_verify_64.h ├── ctr.h ├── endianness.h ├── generichash_blake2b.c ├── init.c ├── keyring_macos.c ├── keyring_secret_service.c ├── keyring_wincred.c ├── mbedtls │ ├── aes.h │ ├── build_info.h │ ├── check_config.h │ ├── config_adjust_legacy_crypto.h │ ├── config_adjust_psa_from_legacy.h │ ├── config_adjust_psa_superset_legacy.h │ ├── config_adjust_ssl.h │ ├── config_adjust_x509.h │ ├── config_psa.h │ ├── error.h │ ├── mbedtls_config.h │ ├── platform.h │ ├── platform_time.h │ ├── platform_util.h │ ├── private_access.h │ └── threading.h ├── onetimeauth_poly1305.c ├── onetimeauth_poly1305.h ├── padlock.c ├── padlock.h ├── platform_util.c ├── poly1305_donna.c ├── poly1305_donna.h ├── poly1305_donna32.h ├── poly1305_donna64.h ├── psa │ ├── crypto_adjust_auto_enabled.h │ ├── crypto_adjust_config_dependencies.h │ ├── crypto_adjust_config_key_pair_types.h │ ├── crypto_adjust_config_synonyms.h │ └── crypto_legacy.h ├── raes.c ├── randombytes_sysrandom.c ├── salsa20_ref.c ├── salsa20_ref.h ├── sha256.c ├── sodium-utils.c ├── sodium.c ├── sodium.h ├── stream_salsa20.c ├── stream_salsa20.h ├── verify.c └── win-path.c └── tests ├── testthat.R └── testthat ├── _snaps ├── encoding.md ├── file.md ├── macos.md └── utils.md ├── helper-fake.R ├── helper.R ├── test-common.R ├── test-default-backend.R ├── test-encoding.R ├── test-env.R ├── test-file.R ├── test-macos.R ├── test-secret-service.R ├── test-utils.R └── test-wincred.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/dragonflybsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/dragonflybsd.yaml -------------------------------------------------------------------------------- /.github/workflows/freebsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/freebsd.yaml -------------------------------------------------------------------------------- /.github/workflows/netbsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/netbsd.yaml -------------------------------------------------------------------------------- /.github/workflows/openbsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/openbsd.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/rhub-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa-import-standalone-rstudio-detect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/aaa-import-standalone-rstudio-detect.R -------------------------------------------------------------------------------- /R/aaassertthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/aaassertthat.R -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/api.R -------------------------------------------------------------------------------- /R/assertions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/assertions.R -------------------------------------------------------------------------------- /R/backend-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/backend-class.R -------------------------------------------------------------------------------- /R/backend-env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/backend-env.R -------------------------------------------------------------------------------- /R/backend-file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/backend-file.R -------------------------------------------------------------------------------- /R/backend-macos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/backend-macos.R -------------------------------------------------------------------------------- /R/backend-secret-service.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/backend-secret-service.R -------------------------------------------------------------------------------- /R/backend-wincred.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/backend-wincred.R -------------------------------------------------------------------------------- /R/default_backend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/default_backend.R -------------------------------------------------------------------------------- /R/keyring-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/keyring-package.R -------------------------------------------------------------------------------- /R/mocks.R: -------------------------------------------------------------------------------- 1 | # Define these objects so they can be mocked in tests. 2 | Sys.info <- NULL 3 | -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/package.R -------------------------------------------------------------------------------- /R/pass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/pass.R -------------------------------------------------------------------------------- /R/rappdirs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/rappdirs.R -------------------------------------------------------------------------------- /R/sodium.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/sodium.R -------------------------------------------------------------------------------- /R/standalone-errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/standalone-errors.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | rm -f src/Makevars 4 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/codecov.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/configure.win -------------------------------------------------------------------------------- /inst/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/inst/COPYRIGHTS -------------------------------------------------------------------------------- /inst/development-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/inst/development-notes.md -------------------------------------------------------------------------------- /keyring.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/keyring.Rproj -------------------------------------------------------------------------------- /man/b_wincred_decode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/b_wincred_decode.Rd -------------------------------------------------------------------------------- /man/b_wincred_decode_auto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/b_wincred_decode_auto.Rd -------------------------------------------------------------------------------- /man/b_wincred_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/b_wincred_get.Rd -------------------------------------------------------------------------------- /man/b_wincred_set_with_raw_value.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/b_wincred_set_with_raw_value.Rd -------------------------------------------------------------------------------- /man/backend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend.Rd -------------------------------------------------------------------------------- /man/backend_env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend_env.Rd -------------------------------------------------------------------------------- /man/backend_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend_file.Rd -------------------------------------------------------------------------------- /man/backend_keyrings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend_keyrings.Rd -------------------------------------------------------------------------------- /man/backend_macos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend_macos.Rd -------------------------------------------------------------------------------- /man/backend_secret_service.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend_secret_service.Rd -------------------------------------------------------------------------------- /man/backend_wincred.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backend_wincred.Rd -------------------------------------------------------------------------------- /man/backends.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/backends.Rd -------------------------------------------------------------------------------- /man/has_keyring_support.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/has_keyring_support.Rd -------------------------------------------------------------------------------- /man/key_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/key_get.Rd -------------------------------------------------------------------------------- /man/keyring-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/man/keyring-package.Rd -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/aes.c -------------------------------------------------------------------------------- /src/aesce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/aesce.c -------------------------------------------------------------------------------- /src/aesce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/aesce.h -------------------------------------------------------------------------------- /src/aesni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/aesni.c -------------------------------------------------------------------------------- /src/aesni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/aesni.h -------------------------------------------------------------------------------- /src/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/alignment.h -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/blake2.h -------------------------------------------------------------------------------- /src/blake2b-compress-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/blake2b-compress-ref.c -------------------------------------------------------------------------------- /src/blake2b-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/blake2b-ref.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/common.h -------------------------------------------------------------------------------- /src/core_hsalsa20_ref2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/core_hsalsa20_ref2.c -------------------------------------------------------------------------------- /src/core_salsa_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/core_salsa_ref.c -------------------------------------------------------------------------------- /src/crypto_core_hsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_core_hsalsa20.h -------------------------------------------------------------------------------- /src/crypto_core_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_core_salsa20.h -------------------------------------------------------------------------------- /src/crypto_core_salsa2012.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_core_salsa2012.h -------------------------------------------------------------------------------- /src/crypto_core_salsa208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_core_salsa208.h -------------------------------------------------------------------------------- /src/crypto_generichash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_generichash.c -------------------------------------------------------------------------------- /src/crypto_generichash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_generichash.h -------------------------------------------------------------------------------- /src/crypto_generichash_blake2b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_generichash_blake2b.h -------------------------------------------------------------------------------- /src/crypto_onetimeauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_onetimeauth.h -------------------------------------------------------------------------------- /src/crypto_onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_onetimeauth_poly1305.h -------------------------------------------------------------------------------- /src/crypto_secretbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_secretbox.h -------------------------------------------------------------------------------- /src/crypto_secretbox_easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_secretbox_easy.c -------------------------------------------------------------------------------- /src/crypto_secretbox_xsalsa20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_secretbox_xsalsa20poly1305.h -------------------------------------------------------------------------------- /src/crypto_stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_stream_salsa20.h -------------------------------------------------------------------------------- /src/crypto_stream_xsalsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_stream_xsalsa20.h -------------------------------------------------------------------------------- /src/crypto_verify_16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_verify_16.h -------------------------------------------------------------------------------- /src/crypto_verify_32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_verify_32.h -------------------------------------------------------------------------------- /src/crypto_verify_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/crypto_verify_64.h -------------------------------------------------------------------------------- /src/ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/ctr.h -------------------------------------------------------------------------------- /src/endianness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/endianness.h -------------------------------------------------------------------------------- /src/generichash_blake2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/generichash_blake2b.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/init.c -------------------------------------------------------------------------------- /src/keyring_macos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/keyring_macos.c -------------------------------------------------------------------------------- /src/keyring_secret_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/keyring_secret_service.c -------------------------------------------------------------------------------- /src/keyring_wincred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/keyring_wincred.c -------------------------------------------------------------------------------- /src/mbedtls/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/aes.h -------------------------------------------------------------------------------- /src/mbedtls/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/build_info.h -------------------------------------------------------------------------------- /src/mbedtls/check_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/check_config.h -------------------------------------------------------------------------------- /src/mbedtls/config_adjust_legacy_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/config_adjust_legacy_crypto.h -------------------------------------------------------------------------------- /src/mbedtls/config_adjust_psa_from_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/config_adjust_psa_from_legacy.h -------------------------------------------------------------------------------- /src/mbedtls/config_adjust_psa_superset_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/config_adjust_psa_superset_legacy.h -------------------------------------------------------------------------------- /src/mbedtls/config_adjust_ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/config_adjust_ssl.h -------------------------------------------------------------------------------- /src/mbedtls/config_adjust_x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/config_adjust_x509.h -------------------------------------------------------------------------------- /src/mbedtls/config_psa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/config_psa.h -------------------------------------------------------------------------------- /src/mbedtls/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/error.h -------------------------------------------------------------------------------- /src/mbedtls/mbedtls_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/mbedtls_config.h -------------------------------------------------------------------------------- /src/mbedtls/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/platform.h -------------------------------------------------------------------------------- /src/mbedtls/platform_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/platform_time.h -------------------------------------------------------------------------------- /src/mbedtls/platform_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/platform_util.h -------------------------------------------------------------------------------- /src/mbedtls/private_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/private_access.h -------------------------------------------------------------------------------- /src/mbedtls/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/mbedtls/threading.h -------------------------------------------------------------------------------- /src/onetimeauth_poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/onetimeauth_poly1305.c -------------------------------------------------------------------------------- /src/onetimeauth_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/onetimeauth_poly1305.h -------------------------------------------------------------------------------- /src/padlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/padlock.c -------------------------------------------------------------------------------- /src/padlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/padlock.h -------------------------------------------------------------------------------- /src/platform_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/platform_util.c -------------------------------------------------------------------------------- /src/poly1305_donna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/poly1305_donna.c -------------------------------------------------------------------------------- /src/poly1305_donna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/poly1305_donna.h -------------------------------------------------------------------------------- /src/poly1305_donna32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/poly1305_donna32.h -------------------------------------------------------------------------------- /src/poly1305_donna64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/poly1305_donna64.h -------------------------------------------------------------------------------- /src/psa/crypto_adjust_auto_enabled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/psa/crypto_adjust_auto_enabled.h -------------------------------------------------------------------------------- /src/psa/crypto_adjust_config_dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/psa/crypto_adjust_config_dependencies.h -------------------------------------------------------------------------------- /src/psa/crypto_adjust_config_key_pair_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/psa/crypto_adjust_config_key_pair_types.h -------------------------------------------------------------------------------- /src/psa/crypto_adjust_config_synonyms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/psa/crypto_adjust_config_synonyms.h -------------------------------------------------------------------------------- /src/psa/crypto_legacy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/psa/crypto_legacy.h -------------------------------------------------------------------------------- /src/raes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/raes.c -------------------------------------------------------------------------------- /src/randombytes_sysrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/randombytes_sysrandom.c -------------------------------------------------------------------------------- /src/salsa20_ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/salsa20_ref.c -------------------------------------------------------------------------------- /src/salsa20_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/salsa20_ref.h -------------------------------------------------------------------------------- /src/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/sha256.c -------------------------------------------------------------------------------- /src/sodium-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/sodium-utils.c -------------------------------------------------------------------------------- /src/sodium.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/sodium.c -------------------------------------------------------------------------------- /src/sodium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/sodium.h -------------------------------------------------------------------------------- /src/stream_salsa20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/stream_salsa20.c -------------------------------------------------------------------------------- /src/stream_salsa20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/stream_salsa20.h -------------------------------------------------------------------------------- /src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/verify.c -------------------------------------------------------------------------------- /src/win-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/src/win-path.c -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/_snaps/encoding.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/_snaps/file.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/_snaps/macos.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/_snaps/utils.md -------------------------------------------------------------------------------- /tests/testthat/helper-fake.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/helper-fake.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-common.R -------------------------------------------------------------------------------- /tests/testthat/test-default-backend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-default-backend.R -------------------------------------------------------------------------------- /tests/testthat/test-encoding.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-encoding.R -------------------------------------------------------------------------------- /tests/testthat/test-env.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-env.R -------------------------------------------------------------------------------- /tests/testthat/test-file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-file.R -------------------------------------------------------------------------------- /tests/testthat/test-macos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-macos.R -------------------------------------------------------------------------------- /tests/testthat/test-secret-service.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-secret-service.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-wincred.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/keyring/HEAD/tests/testthat/test-wincred.R --------------------------------------------------------------------------------