Rename subdir Chaos/Hashing --> Chaos/Hash
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
#ifndef CHAOS_HASHING_HASH_HPP
|
||||
#define CHAOS_HASHING_HASH_HPP
|
||||
#ifndef CHAOS_HASH_HASH_HPP
|
||||
#define CHAOS_HASH_HASH_HPP
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace Chaos::Hashing
|
||||
namespace Chaos::Hash
|
||||
{
|
||||
|
||||
template<typename T>
|
||||
@@ -32,6 +32,6 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Chaos::Hashing
|
||||
} // namespace Chaos::Hash
|
||||
|
||||
#endif
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef CHAOS_HASHING_HASHER_HPP
|
||||
#define CHAOS_HASHING_HASHER_HPP
|
||||
#ifndef CHAOS_HASH_HASHER_HPP
|
||||
#define CHAOS_HASH_HASHER_HPP
|
||||
|
||||
namespace Chaos::Hashing
|
||||
namespace Chaos::Hash
|
||||
{
|
||||
|
||||
template<typename T>
|
||||
@@ -31,6 +31,6 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Chaos::Hashing
|
||||
} // namespace Chaos::Hash
|
||||
|
||||
#endif
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef CHAOS_HASHING_MD4HASHER_HPP
|
||||
#define CHAOS_HASHING_MD4HASHER_HPP
|
||||
#ifndef CHAOS_HASH_MD4HASHER_HPP
|
||||
#define CHAOS_HASH_MD4HASHER_HPP
|
||||
|
||||
#include <cstdint>
|
||||
#include <array>
|
||||
@@ -8,7 +8,7 @@
|
||||
#include "Hash.hpp"
|
||||
#include "Hasher.hpp"
|
||||
|
||||
namespace Chaos::Hashing::Md4::Inner_
|
||||
namespace Chaos::Hash::Md4::Inner_
|
||||
{
|
||||
|
||||
struct Buffer
|
||||
@@ -129,9 +129,9 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Chaos::Hashing::Md4::Inner_
|
||||
} // namespace Chaos::Hash::Md4::Inner_
|
||||
|
||||
namespace Chaos::Hashing::Md4
|
||||
namespace Chaos::Hash::Md4
|
||||
{
|
||||
|
||||
struct Md4Hash : public Hash<Md4Hash>
|
||||
@@ -284,6 +284,6 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Chaos::Hashing::Md4
|
||||
} // namespace Chaos::Hash::Md4
|
||||
|
||||
#endif
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef CHAOS_HASHING_MD5HASHER_HPP
|
||||
#define CHAOS_HASHING_MD5HASHER_HPP
|
||||
#ifndef CHAOS_HASH_MD5HASHER_HPP
|
||||
#define CHAOS_HASH_MD5HASHER_HPP
|
||||
|
||||
#include <cstdint>
|
||||
#include <array>
|
||||
@@ -8,7 +8,7 @@
|
||||
#include "Hash.hpp"
|
||||
#include "Hasher.hpp"
|
||||
|
||||
namespace Chaos::Hashing::Md5::Inner_
|
||||
namespace Chaos::Hash::Md5::Inner_
|
||||
{
|
||||
|
||||
struct Buffer
|
||||
@@ -153,9 +153,9 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Chaos::Hashing::Md5::Inner_
|
||||
} // namespace Chaos::Hash::Md5::Inner_
|
||||
|
||||
namespace Chaos::Hashing::Md5
|
||||
namespace Chaos::Hash::Md5
|
||||
{
|
||||
|
||||
struct Md5Hash : public Hash<Md5Hash>
|
||||
@@ -308,6 +308,6 @@ private:
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace Chaos::Hashing::Md5
|
||||
} // namespace Chaos::Hash::Md5
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user