mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
16 lines
226 B
C++
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
|
|
};
|
|
|
|
}
|