blob: a2fb11f4b93f6853a6e82c6ce1c93d6478ff94ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/***************************************************************************/
/* Copyright (c) 2024 Microsoft Corporation */
/* Copyright (c) 2026 Eclipse ThreadX contributors */
/* */
/* This program and the accompanying materials are made available under */
/* the terms of the MIT License which is available at */
/* https://opensource.org/licenses/MIT. */
/* */
/* SPDX-License-Identifier: MIT */
/***************************************************************************/
#ifndef SRC_NX_SECURE_USER_H
#define SRC_NX_SECURE_USER_H
UINT nx_crypto_hash_clone_test_clone(VOID *dest_metadata, VOID *source_metadata, ULONG length);
#define NX_SECURE_HASH_METADATA_CLONE nx_crypto_hash_clone_test_clone
UINT nx_crypto_clone_cleanup(VOID *metadata, ULONG length);
#define NX_SECURE_HASH_CLONE_CLEANUP nx_crypto_clone_cleanup
#endif /* SRC_NX_SECURE_USER_H */
|