AuroraRuntime/Include/Aurora/Crypto/PBKDF2/PBKDF2.hpp

17 lines
486 B
C++
Raw Normal View History

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: PBKDF2.hpp
Date: 2022-10-08
Author: Reece
***/
#pragma once
namespace Aurora::Crypto::PBKDF2
{
AUKN_SYM bool PBKDF2(const Memory::MemoryViewRead &salt,
const Memory::MemoryViewRead &password,
Hashing::EHashType hashType,
AuUInt32 uIterations,
const Memory::MemoryViewWrite &out);
}