From 18cf5b3059b4c0ce63dc6de7198e23cbdea3dc2a Mon Sep 17 00:00:00 2001 From: Hesham Date: Fri, 10 Jul 2020 07:25:20 +0300 Subject: [PATCH] Add 'README.md' --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..03e37d9 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ + +# hesham-rsa (hrsa) +A simple program written in python to implement RSA public encryption. Used as Course EE-305 project. +# Installation +There is no packaging or installation. Works in current dir (portable) for now. +# Usage + + ./hrsa + or + + python hrsa + +## generating keys +to generate a key pair with and ID + + ./hrsa [keysize] [keyID] +All generated keys are {working dir}/saves/ in keys folder +## encrypting + + ./hrsa encrypt "[message]" [RecieverKeyID] [SenderSignetureKeyID] +