From d45f579679735d22a307d958660074a5477adb89 Mon Sep 17 00:00:00 2001 From: larabr <7375870+larabr@users.noreply.github.com> Date: Wed, 4 Sep 2024 14:52:10 +0200 Subject: [PATCH] Add rsop (rpgp) --- Dockerfile | 12 +++++++++++- README.md | 10 +++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e40e606..e031540 100644 --- a/Dockerfile +++ b/Dockerfile @@ -239,4 +239,14 @@ RUN cargo build --release ENV RNP_SOP=${RNP_SOP_DIR}/target/release/rnp-sop -WORKDIR / \ No newline at end of file +WORKDIR / + +# Install rsop + +ARG RSOP_VERSION="0.3.7" + +RUN apt install -y libpcsclite-dev + +RUN cargo install rsop --version ${RSOP_VERSION} + +ENV RSOP=/root/.cargo/bin/rsop diff --git a/README.md b/README.md index 696e975..e2c101a 100644 --- a/README.md +++ b/README.md @@ -50,4 +50,12 @@ SOP implementations using RNP as the backend https://gitlab.com/sequoia-pgp/rnp-sop -https://github.com/rnpgp/rnp \ No newline at end of file +https://github.com/rnpgp/rnp + +### rsop + +SOP implementations using rpgp (via rpgpie) as the backend + +https://codeberg.org/heiko/rsop + +https://github.com/rpgp/rpgp