GM6000 Digital Heater Controller Branch: main
SDX-1330
Api.h
Go to the documentation of this file.
1#ifndef Driver_Crypto_Api_h_
2#define Driver_Crypto_Api_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "colony_config.h"
17
18/// Return Status. DRIVER_CRYPTO_SUCCESS is success, all other values indicate an error
19#ifndef DriverCryptoStatus_T
20#define DriverCryptoStatus_T int
21#endif
22
23/// Success return value (Warning: strongly recommended that the value is not overridden)
24#ifndef DRIVER_CRYPTO_SUCCESS
25#define DRIVER_CRYPTO_SUCCESS 0
26#endif
27
28///
29namespace Driver {
30///
31namespace Crypto {
32
33/** This method is used to initialize the Crytpo engine. It must be called
34 before any other Crypto methods.
35
36 Returns DRIVER_CRYPTO_SUCCESS when successful
37 */
39
40
41/// This method is used to 'cleanly' shutdown the Crypto engine.
42void shutdown() noexcept;
43
44
45} // End namespace(s)
46}
47
48/*--------------------------------------------------------------------------*/
49#endif // end header latch
#define DriverCryptoStatus_T
Return Status. DRIVER_CRYPTO_SUCCESS is success, all other values indicate an error.
Definition Api.h:20
void shutdown() noexcept
This method is used to 'cleanly' shutdown the Crypto engine.
DriverCryptoStatus_T initialize() noexcept
This method is used to initialize the Crytpo engine.
namespace