From 9c9997c54df6d65a6b7f87a75e14c22f5eb1e5f9 Mon Sep 17 00:00:00 2001 From: m33 <327-m33@git.qoto.org> Date: Sat, 17 Apr 2021 13:40:28 +0200 Subject: [PATCH] rename procs --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index eaa4b6c..677f1ab 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# libSAEDEA +# libsaedea Nim Library implementing a variation of Simple And Efficient Data Encryption Algorithm Research paper pdf: [INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME 8, ISSUE 12, DECEMBER 2019 ISSN 2277-8616](http://www.ijstr.org/final-print/dec2013/A-Survey-On-Some-Encryption-Algorithms-And-Verification-Of-Rsa-Technique.pdf) from [IJSTR.org](https://www.ijstr.org/paper-references.php?ref=IJSTR-1119-24664) # Usage: -`import libSAEDEA` +`import libsaedea` `gen_iv("your random data: string")` => gives you an Initialization Vector (type: string) @@ -13,19 +13,19 @@ Research paper pdf: [INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH V ## SAEDEA complete implementation -`ecrypt("your cleartext data: string", "the shared secret: string", "initialization vector: string", "length of the cleartext data: int")` +`saedea_ecrypt("your cleartext data: string", "the shared secret: string", "initialization vector: string", "length of the cleartext data: int")` => gives the encrypted data (type: string) -`decrypt("the encrypted string", "the shared secret: string", "initialization vector: string", "length of the cleartext data: int")` +`saedea_decrypt("the encrypted string", "the shared secret: string", "initialization vector: string", "length of the cleartext data: int")` => gives the cleartext data (type: string) ## SAEDEA light implementation -`ecrypt("your cleartext data: string", "the shared secret: string", "initialization vector: string")` +`saedea_ecrypt("your cleartext data: string", "the shared secret: string", "initialization vector: string")` => gives the encrypted data (type: string) -`decrypt("the encrypted string", "the shared secret: string", "initialization vector: string")` +`saedea_decrypt("the encrypted string", "the shared secret: string", "initialization vector: string")` => gives the cleartext data (type: string) ## Disclamer, misc -- GitLab