1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-13 11:51:00 +00:00
serenity/Userland/Libraries/LibCrypto/Verification.h

16 lines
226 B
C++

/*
* Copyright (c) 2020, Ali Mohammad Pur <mpfard@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Crypto {
enum class VerificationConsistency {
Consistent,
Inconsistent
};
}