IOS/KD: Implement NWC24_CHECK_MAIL_NOW

This commit is contained in:
Sketch
2023-08-14 21:02:57 -04:00
parent f2b8baa82c
commit 2154941c2c
16 changed files with 569 additions and 18 deletions

View File

@ -0,0 +1,14 @@
// Copyright 2023 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include "Common/CommonTypes.h"
#include <span>
namespace Common::HMAC
{
// HMAC with the SHA1 message digest. Excepted output length is 20 bytes.
bool HMACWithSHA1(std::span<const u8> key, std::span<const u8> msg, u8* out);
} // namespace Common::HMAC