1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:28:11 +00:00

LibCrypto: Move out 'VerificationConsistency' into its own header file

This commit is contained in:
AnotherTest 2020-11-11 13:11:15 +03:30 committed by Andreas Kling
parent b9822d606d
commit 740089d24a
2 changed files with 37 additions and 5 deletions

View file

@ -27,15 +27,11 @@
#pragma once
#include <LibCrypto/Hash/HashFunction.h>
#include <LibCrypto/Verification.h>
namespace Crypto {
namespace PK {
enum class VerificationConsistency {
Consistent,
Inconsistent
};
template<typename HashFunction>
class Code {
public: