/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include namespace Aws { namespace Security { void SecureMemClear(unsigned char *data, size_t length) { SecureZeroMemory(data, length); } } // namespace Security } // namespace Aws