usbloadergx/source/libs/libwolfssl/wolfcrypt/port/intel/quickassist_sync.h

54 lines
1.5 KiB
C
Raw Normal View History

2019-11-11 18:09:59 +01:00
/* quickassist_sync.h
*
2021-08-01 19:00:22 +02:00
* Copyright (C) 2006-2021 wolfSSL Inc.
2019-11-11 18:09:59 +01:00
*
2021-08-01 19:00:22 +02:00
* This file is part of wolfSSL.
2019-11-11 18:09:59 +01:00
*
* wolfSSL is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* wolfSSL is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
2021-08-01 19:00:22 +02:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
2019-11-11 18:09:59 +01:00
*/
#ifndef _INTEL_QUICKASSIST_SYNC_H_
#define _INTEL_QUICKASSIST_SYNC_H_
#ifdef HAVE_INTEL_QA_SYNC
2020-07-06 18:05:04 +02:00
WOLFSSL_API int wc_CryptoCb_InitIntelQa(void);
WOLFSSL_API void wc_CryptoCb_CleanupIntelQa(int* id);
2019-11-11 18:09:59 +01:00
2020-07-06 18:05:04 +02:00
WOLFSSL_API void* wc_CryptoCb_IntelQaMalloc(size_t size,
void* heap, int type
2019-11-11 18:09:59 +01:00
#ifdef WOLFSSL_DEBUG_MEMORY
, const char* func, unsigned int line
#endif
);
2020-07-06 18:05:04 +02:00
WOLFSSL_API void wc_CryptoCb_IntelQaFree(void *ptr,
void* heap, int type
2019-11-11 18:09:59 +01:00
#ifdef WOLFSSL_DEBUG_MEMORY
, const char* func, unsigned int line
#endif
);
2020-07-06 18:05:04 +02:00
WOLFSSL_API void* wc_CryptoCb_IntelQaRealloc(void *ptr,
size_t size, void* heap, int type
2019-11-11 18:09:59 +01:00
#ifdef WOLFSSL_DEBUG_MEMORY
, const char* func, unsigned int line
#endif
);
2020-07-06 18:05:04 +02:00
2019-11-11 18:09:59 +01:00
#endif /* HAVE_INTEL_QA_SYNC */
#endif /* _INTEL_QUICKASSIST_SYNC_H_ */