-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.Rmd
73 lines (50 loc) · 2.64 KB
/
README.Rmd
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
<!-- badges: start -->
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/encryptedRmd)](https://CRAN.R-project.org/package=encryptedRmd)
[![R build status](https://github.com/dirkschumacher/encryptedRmd/workflows/R-CMD-check/badge.svg)](https://github.com/dirkschumacher/encryptedRmd/actions)
<!-- badges: end -->
# Password protected html markdown documents
Self-encrypt html markdown reports using [libsodium](https://doc.libsodium.org/). The package lets you password protect markdown html documents and share them with others securely. The code needed to decrypt the file is bundled into the exported html file, which makes the resulting file fully self contained.
*Use at your own risk. Feedback and bug reports very welcome!*
## Installation
``` r
install.packages("encryptedRmd")
```
``` r
remotes::install_github("dirkschumacher/encryptedRmd")
```
## Functions
### Encrypt html files
```{r}
library(encryptedRmd)
encrypt_html_file("devel/example/test.html", output_path = "docs/test.encrypted.html")
```
You can take a look at the exported file [here](https://dirkschumacher.github.io/encryptedRmd/test.encrypted.html) and use the key printed above to decrypt it.
### Encrypted `rmarkdown` html format
```yml
---
title: "test"
output: encryptedRmd::encrypted_html_document
---
```
See [here](https://github.com/dirkschumacher/encryptedRmd/tree/master/devel/example) for an example. After knitting, the document is encrypted with a random key and the file is stored in the same directory together with the key.
## Inspiration
Inspired and based on the work by @derhuerst on [self encrypting html pages](https://github.com/derhuerst/self-decrypting-html-page).
## License
MIT
## Development
In `devel/r-encrypted-html-template` the code to generate the javascript file is contained. In order to update the template, you have to run the following:
* In `devel/r-encrypted-html-template` run `npm run build`. This creates a new version of the template and copies it to `devel/html-template.js`. It also creates a file called `JSLICENSES.txt` that contains all licenses of used node packages.
* In `devel` run `combine.R`. This generates the file report template and copies it to `inst/html-template.html`. This template is then used within the R package to generate encrypted html files.