{"id":17381890,"url":"https://github.com/Gootjes/encryptr","last_synced_at":"2025-02-27T10:30:56.219Z","repository":{"id":80132585,"uuid":"138870335","full_name":"Gootjes/encryptr","owner":"Gootjes","description":"R package to encrypt R objects with AES encryption (relies on openSSL).","archived":false,"fork":false,"pushed_at":"2024-02-12T14:26:19.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-02-13T11:56:20.751Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Gootjes.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2018-06-27T11:07:02.000Z","updated_at":"2024-02-13T11:56:20.751Z","dependencies_parsed_at":"2024-02-12T12:02:02.663Z","dependency_job_id":null,"html_url":"https://github.com/Gootjes/encryptr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gootjes%2Fencryptr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gootjes%2Fencryptr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gootjes%2Fencryptr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gootjes%2Fencryptr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gootjes","download_url":"https://codeload.github.com/Gootjes/encryptr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219842839,"owners_count":16556565,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-16T07:02:11.230Z","updated_at":"2024-10-16T07:05:00.102Z","avatar_url":"https://github.com/Gootjes.png","language":"R","funding_links":[],"categories":["R"],"sub_categories":[],"readme":"# encryptr\nR package to encrypt R objects with AES encryption (relies on openSSL).\n\nThis package masks the `load` and `save` functions from `base` for convenience.\n\n## Usage\n\nInstall the package\n```r\nremotes::install_github(\"Gootjes/encryptr\")\n```\n\nUse `save` to save objects to a file, when no password is specified you will be asked for a password.\n```r\nlibrary(encryptr)\n\nsave(really_sensitive_data, file = \"path/to/file\", password = \"the password\")\n```\n\nUse `load` to load objects from the file, and store them in the Global environment or in a list.\n```r\nobjs \u003c- list()\nload(\"path/to/file\", envir = objs, password = \"the password\")\n```\n\n### Note\nNote that `load()` and `save()` mask the functions from the `base` package.\nIf you want to save your data to a file without a password, make sure you call the right function.\nOr use lower-level functions such as `saveRDS()` and `readRDS()` from the `base` package.\n\n```r\nlibrary(encryptr)\n\nobjs \u003c- list()\n# calls encryptr::load, alternative is to not library() the encryptr package at all and do encryptr::load() instead of load() to avoid the masking\nload(\"path/to/file\", envir = objs, password = \"the password\")\nbase::save(objs, file = \"path/to/file\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGootjes%2Fencryptr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGootjes%2Fencryptr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGootjes%2Fencryptr/lists"}