GM6000 Digital Heater Controller Branch: main
SDX-1330
Random.h
Go to the documentation of this file.
1#ifndef Driver_Crypto_Random_h_
2#define Driver_Crypto_Random_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-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16#include "Driver/Crypto/Api.h"
17#include <stdlib.h>
18
19///
20namespace Driver {
21///
22namespace Crypto {
23
24/** This method is used to generate random bytes. 'dstBuffer' must be
25 at least 'numBytesToGenerate' in size. Returns DRIVER_CRYPTO_SUCCESS when
26 successful.
27
28 Note: How "true" the random generator is platform specific.
29 */
30DriverCryptoStatus_T generateRandom( void* dstBuffer, size_t numBytesToGenerate) noexcept;
31
32
33} // End namespace(s)
34}
35
36/*--------------------------------------------------------------------------*/
37#endif // end header latch
#define DriverCryptoStatus_T
Return Status. DRIVER_CRYPTO_SUCCESS is success, all other values indicate an error.
Definition Api.h:20
DriverCryptoStatus_T generateRandom(void *dstBuffer, size_t numBytesToGenerate) noexcept
This method is used to generate random bytes.
namespace