Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions hmac.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <algorithm>
#include "hmac.hpp"

namespace hmac {
Expand Down
1 change: 1 addition & 0 deletions sha1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
* Modified by NewYaroslav, 2025-04-15
*/

#include <algorithm>
#include "sha1.hpp"

/* Help macros */
Expand Down
1 change: 1 addition & 0 deletions sha1.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#ifndef _HMAC_SHA1_HPP_INCLUDED
#define _HMAC_SHA1_HPP_INCLUDED

#include <algorithm>
#include <string>
#include <vector>
#include <cstdint>
Expand Down
1 change: 1 addition & 0 deletions sha256.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* Исправления: 18.06.2020 Elektro Yar
*/

#include <algorithm>
#include <cstring>
//#include <fstream>
#include "sha256.hpp"
Expand Down
1 change: 1 addition & 0 deletions sha256.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#ifndef _HMAC_SHA256_HPP_INCLUDED
#define _HMAC_SHA256_HPP_INCLUDED

#include <algorithm>
#include <string>
#include <vector>
#include <cstdint>
Expand Down
1 change: 1 addition & 0 deletions sha512.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
* Исправления: 18.06.2020 Elektro Yar
*/

#include <algorithm>
#include <cstring>
#include "sha512.hpp"

Expand Down
1 change: 1 addition & 0 deletions sha512.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#ifndef _HMAC_SHA512_HPP_INCLUDED
#define _HMAC_SHA512_HPP_INCLUDED

#include <algorithm>
#include <string>
#include <vector>
#include <cstdint>
Expand Down
Loading