summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeppia <nonso@insicuri.net>2016-06-16 00:15:29 +0200
committerSeppia <nonso@insicuri.net>2016-06-16 00:15:29 +0200
commit6d80d414cd2adfb5cc0d09074ee0c5c7288fb67e (patch)
tree5ebdd8082db5cf727780f9e5638e0b67fd50a4c9
parent7207ab32cdb629d77cbf1fcc7786e4519cd1ba60 (diff)
downloadonetimebluh-6d80d414cd2adfb5cc0d09074ee0c5c7288fb67e.tar.gz
onetimebluh-6d80d414cd2adfb5cc0d09074ee0c5c7288fb67e.tar.bz2
onetimebluh-6d80d414cd2adfb5cc0d09074ee0c5c7288fb67e.zip
updated README
-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`.
```