-
-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Crypto module #245
Comments
Hi, if I understand correctly, you want to hash data which is supposed to be some string or something else ? If so, is using openssl/md5.h and sha.h okay ? And if data are not provided, is hashing generated random word with Word.h enough to get needed hash ? |
Hello, if data is not provided, some words are fine. I would like to avoid additional libs dependecies so maybe we could copy those algorithms from internet to our codebase? What do you think? |
I don't think it will be a problem to find some algorithms and use them but, I'm not proficient with copyright so I'm not exactly sure where to find freely available ones. |
Here it is: https://github.com/flexxxxer/md5_hash https://github.com/System-Glitch/SHA256 Please add file ExternalLicenses.txt and copy their LICENSE file contents into it like: External repositories licenses:
license...
license... |
Okay, thanks for help, you can assign me this module and im going to do it now. Dumb question but just to be clear, ExternalLicenses.txt should be in module crypto folder ? |
Assigned. In project root so we can add all future external licenses there |
Add Crypto module with following functionalities:
-md5 (optional data arg, if not provided hash randomized data)
-sha256 (optional data arg, if not provided hash randomized data)
The text was updated successfully, but these errors were encountered: