2010-11-01 07:30:58 +01:00
|
|
|
/** @file
|
|
|
|
Intrinsic Memory Routines Wrapper Implementation for OpenSSL-based
|
|
|
|
Cryptographic Library.
|
|
|
|
|
|
|
|
Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:03:30 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-11-01 07:30:58 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <Base.h>
|
|
|
|
#include <Library/BaseMemoryLib.h>
|
|
|
|
|
|
|
|
/* Copies bytes between buffers */
|
|
|
|
void * memcpy (void *dest, const void *src, unsigned int count)
|
|
|
|
{
|
|
|
|
return CopyMem (dest, src, (UINTN)count);
|
|
|
|
}
|