Verification.h 226 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2020, Ali Mohammad Pur <mpfard@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. namespace Crypto {
  8. enum class VerificationConsistency {
  9. Consistent,
  10. Inconsistent
  11. };
  12. }