aboutsummaryrefslogtreecommitdiffhomepage
path: root/qc_decrypt/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'qc_decrypt/README.md')
-rw-r--r--qc_decrypt/README.md16
1 files changed, 14 insertions, 2 deletions
diff --git a/qc_decrypt/README.md b/qc_decrypt/README.md
index b434975..e16b33e 100644
--- a/qc_decrypt/README.md
+++ b/qc_decrypt/README.md
@@ -1,9 +1,21 @@
NeuralDSP QuadCortex file decryptor.
-Compile with `make` (requires gcc and openssl-dev installed), then pass the serial number found in `/etc/qc_sn` as command line argument:
+Build the image:
```sh
-./qc_decrypt QA00XXXXX /path/to/encrypted.json/cns/ldr/... > decrypted.dat
+docker build . -t qc_decrypt
+```
+
+To decrypt user files (pass the serial number found in `/etc/qc_sn` as command line argument):
+
+```sh
+docker run -v/path/to/your/files/:/data qc_decrypt QA00XXXXX /data/encrypted.json
+```
+
+To decrypt update files instead, provide an empty serial:
+
+```sh
+docker run -v/path/to/your/files/:/data qc_decrypt "" /data/encrypted.json
```
## License