blob: fbf9a4e679412a2c73992ba1f016a110002cfe01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/platform/Security.h>
#include <windows.h>
namespace Aws
{
namespace Security
{
void SecureMemClear(unsigned char *data, size_t length)
{
SecureZeroMemory(data, length);
}
} // namespace Security
} // namespace Aws
|