1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

cryptowinrt: Implement GenerateRandomNumber().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
This commit is contained in:
Nikolay Sivov 2022-09-19 22:40:19 +03:00 committed by Alexandre Julliard
parent 09cb9cd1c6
commit 5e0acc095d
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,5 @@
MODULE = cryptowinrt.dll
IMPORTS = combase uuid
IMPORTS = combase bcrypt uuid
C_SRCS = \
main.c

View File

@ -29,6 +29,8 @@
#include "initguid.h"
#include "activation.h"
#include "bcrypt.h"
#define WIDL_using_Windows_Foundation
#define WIDL_using_Windows_Foundation_Collections
#include "windows.foundation.h"
@ -214,9 +216,10 @@ static HRESULT STDMETHODCALLTYPE cryptobuffer_statics_GenerateRandom(
static HRESULT STDMETHODCALLTYPE cryptobuffer_statics_GenerateRandomNumber(
ICryptographicBufferStatics *iface, UINT32 *value)
{
FIXME("iface %p, value %p stub!\n", iface, value);
TRACE("iface %p, value %p.\n", iface, value);
return E_NOTIMPL;
BCryptGenRandom(NULL, (UCHAR *)value, sizeof(*value), BCRYPT_USE_SYSTEM_PREFERRED_RNG);
return S_OK;
}
static HRESULT STDMETHODCALLTYPE cryptobuffer_statics_CreateFromByteArray(