summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-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
-------