summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2448196..c50a4ef 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,18 @@ onetimebluh --encrypt message --key-file pad --output encrypted-message
onetimebluh --decrypt encrypted-message --key-file pad --outptut decrypted-message
```
+Is recommended to use the `-t` option in order to be sure not to use more than once the same pieces of the pad to encrypt your data. Here follows an other example:
+
+```
+onetimebluh --encrypt message --key-file pad --output encrypted-message --tear-page
+```
+
+Or using the short options:
+
+```
+onetimebluh -te message -k pad -o encrypted-message
+```
+
You can print the help by running `onetimebluh --help` or `onetimebluh -h`.
```