diff options
| author | 2022-01-25 13:59:42 +0000 | |
|---|---|---|
| committer | 2022-01-25 14:02:36 +0000 | |
| commit | d79147e7afe2eca34780c607f78b11f8b3dd017d (patch) | |
| tree | a3f9a145dd53f9c1c268ac9b521ac907b802eab0 /src/modules/m_sha2.cpp | |
| parent | Fix a few Doxygen comment errors. (diff) | |
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'src/modules/m_sha2.cpp')
| -rw-r--r-- | src/modules/m_sha2.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_sha2.cpp b/src/modules/m_sha2.cpp index a5cb35ea7..c68c579b9 100644 --- a/src/modules/m_sha2.cpp +++ b/src/modules/m_sha2.cpp @@ -45,7 +45,7 @@ template<void (*SHA)(const unsigned char*, unsigned int, unsigned char*)> class HashSHA2 final : public HashProvider { - public: +public: HashSHA2(Module* parent, const std::string& Name, unsigned int osize, unsigned int bsize) : HashProvider(parent, Name, osize, bsize) { @@ -62,13 +62,13 @@ class HashSHA2 final class ModuleSHA2 final : public Module { - private: +private: HashSHA2<sha224> sha224algo; HashSHA2<sha256> sha256algo; HashSHA2<sha384> sha384algo; HashSHA2<sha512> sha512algo; - public: +public: ModuleSHA2() : Module(VF_VENDOR, "Allows other modules to generate SHA-2 hashes.") , sha224algo(this, "sha224", SHA224_DIGEST_SIZE, SHA224_BLOCK_SIZE) |
