dfaeb9a2d9
- Moved cryptography code out of Tactility project and into a kernel module. - Converted C++ code to C style interface - Hardened security
13 lines
157 B
C
13 lines
157 B
C
// SPDX-License-Identifier: Apache-2.0
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern struct Module crypt_module;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|