summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeppia <nonso@insicuri.net>2016-06-12 19:25:33 +0200
committerSeppia <nonso@insicuri.net>2016-06-12 19:25:33 +0200
commit2417cc7c9c525da93fc41e7336b3225206dd5967 (patch)
treec7e17c51dad2587d03392805749f2268a3554784
parentda5ade6e929a8c343d821847ffd361f231f01dc5 (diff)
downloadonetimebluh-2417cc7c9c525da93fc41e7336b3225206dd5967.tar.gz
onetimebluh-2417cc7c9c525da93fc41e7336b3225206dd5967.tar.bz2
onetimebluh-2417cc7c9c525da93fc41e7336b3225206dd5967.zip
added README.md build section
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0725b82..555de68 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,18 @@
Onetimebluh (Workbluhp in blogress!!)
======================================
-Simple implementation of One Time Pad cipher.
+Simple implementation of One Time Pad cipher.
Capable of generating cryptographically strong random number keys and of usign them to encrypt/decrypt messages of same length with a bitwise XOR function.
+Build
+-------
+
+Still usign just gcc. Compile only for testing. Openssl libraries are needed and must be linked to gcc with the option `-lcrypto`. Here follows an example:
+
+```
+gcc -Wall -Wpedantic -lcrypto onetimebluh.c -o onetimebluh -v
+```
+
Usage
-------