-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
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
feat. Add SHA-1 hashing algorithm #1609
feat. Add SHA-1 hashing algorithm #1609
Conversation
hashing/sha1.cpp
Outdated
// their hash | ||
interactive(); | ||
return 0; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing an endline.
hashing/sha1.cpp
Outdated
#include <algorithm> // Used for std::copy | ||
#include <array> // Used for std::array | ||
#include <cassert> // Used for assert | ||
#include <cstring> // Used for std::memcopy | ||
#include <iostream> // Used for IO operations | ||
#include <string> // Used for strings | ||
#include <vector> // Used for std::vector |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#include <algorithm> // Used for std::copy | |
#include <array> // Used for std::array | |
#include <cassert> // Used for assert | |
#include <cstring> // Used for std::memcopy | |
#include <iostream> // Used for IO operations | |
#include <string> // Used for strings | |
#include <vector> // Used for std::vector | |
#include <algorithm> /// for std::copy | |
#include <array> /// for std::array | |
#include <cassert> /// for assert | |
#include <cstring> /// for std::memcopy | |
#include <iostream> /// for IO operations | |
#include <string> /// for strings | |
#include <vector> /// for std::vector |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome work @tGautot! 🚀 Thank you for your contribution! 😄👍🎉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tGautot: Looks good! : )
Description of Change
Added my own implementation of the SHA-1 Algorithm/Protocol to the hashing directory
Checklist