n32g45x_rng.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*****************************************************************************
  2. * Copyright (c) 2019, Nations Technologies Inc.
  3. *
  4. * All rights reserved.
  5. * ****************************************************************************
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions are met:
  9. *
  10. * - Redistributions of source code must retain the above copyright notice,
  11. * this list of conditions and the disclaimer below.
  12. *
  13. * Nations' name may not be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. *
  16. * DISCLAIMER: THIS SOFTWARE IS PROVIDED BY NATIONS "AS IS" AND ANY EXPRESS OR
  17. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  18. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
  19. * DISCLAIMED. IN NO EVENT SHALL NATIONS BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
  22. * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  23. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  24. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  25. * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. * ****************************************************************************/
  27. /**
  28. * @file n32g45x_rng.h
  29. * @author Nations
  30. * @version v1.0.0
  31. *
  32. * @copyright Copyright (c) 2019, Nations Technologies Inc. All rights reserved.
  33. */
  34. #ifndef __N32G45X_RNG_H__
  35. #define __N32G45X_RNG_H__
  36. #include <stdint.h>
  37. /** @addtogroup N32G45X_Algorithm_Library
  38. * @{
  39. */
  40. /** @addtogroup RNG
  41. * @brief Random number generator
  42. * @{
  43. */
  44. enum{
  45. RNG_OK = 0x5a5a5a5a,
  46. LENError = 0x311ECF50, //RNG generation of key length error
  47. ADDRNULL = 0x7A9DB86C, // This address is empty
  48. };
  49. //u32 RNG_init(void);
  50. /**
  51. * @brief Get pseudo random number
  52. * @param[out] rand pointer to random number
  53. * @param[in] the wordlen of random number
  54. * @param[in] the seed, can be NULL
  55. * @return RNG_OK:get random number success; othets: get random number fail
  56. * @note
  57. */
  58. uint32_t GetPseudoRand_U32(uint32_t *rand, uint32_t wordLen,uint32_t seed[2]);
  59. /**
  60. * @brief Get true random number
  61. * @param[out] rand pointer to random number
  62. * @param[in] the wordlen of random number
  63. * @return RNG_OK:get random number success; othets: get random number fail
  64. * @note
  65. */
  66. uint32_t GetTrueRand_U32(uint32_t *rand, uint32_t wordLen);
  67. /**
  68. * @brief Get RNG lib version
  69. * @param[out] type pointer one byte type information represents the type of the lib, like Commercial version.\
  70. * @Bits 0~4 stands for Commercial (C), Security (S), Normal (N), Evaluation (E), Test (T), Bits 5~7 are reserved. e.g. 0x09 stands for CE version.
  71. * @param[out] customer pointer one byte customer information represents customer ID. for example, 0x00 stands for standard version, 0x01 is for Tianyu customized version...
  72. * @param[out] date pointer array which include three bytes date information. If the returned bytes are 18,9,13,this denotes September 13,2018
  73. * @param[out] version pointer one byte version information represents develop version of the lib. e.g. 0x12 denotes version 1.2.
  74. * @return none
  75. * @1.You can recall this function to get RSA lib information
  76. */
  77. void RNG_Version(uint8_t *type, uint8_t *customer, uint8_t date[3], uint8_t *version);
  78. #endif