n32g45x_des.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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_des.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_DES_H__
  35. #define __N32G45X_DES_H__
  36. #include <stdint.h>
  37. /** @addtogroup N32G45X_Algorithm_Library
  38. * @{
  39. */
  40. /** @addtogroup DES
  41. * @brief DES symmetrical cipher algorithm
  42. * @{
  43. */
  44. #define DES_ECB (0x11111111)
  45. #define DES_CBC (0x22222222)
  46. #define DES_ENC (0x33333333)
  47. #define DES_DEC (0x44444444)
  48. #define DES_KEY (0x55555555)
  49. #define TDES_2KEY (0x66666666)
  50. #define TDES_3KEY (0x77777777)
  51. enum DES
  52. {
  53. DES_Crypto_OK = 0x0, // DES/TDES opreation success
  54. DES_Init_OK = 0x0, // DES/TDES Init opreation success
  55. DES_Crypto_ModeError = 0x5a5a5a5a, // Working mode error(Neither ECB nor CBC)
  56. DES_Crypto_EnOrDeError, // En&De error(Neither encryption nor decryption)
  57. DES_Crypto_ParaNull, // the part of input(output/iv) Null
  58. DES_Crypto_LengthError, // the length of input message must be 2 times and cannot be zero
  59. DES_Crypto_KeyError, // keyMode error(Neither DES_KEY nor TDES_2KEY nor TDES_3KEY)
  60. DES_Crypto_UnInitError, // DES/TDES uninitialized
  61. };
  62. typedef struct
  63. {
  64. uint32_t* in; // the part of input to be encrypted or decrypted
  65. uint32_t* iv; // the part of initial vector
  66. uint32_t* out; // the part of out
  67. uint32_t* key; // the part of key
  68. uint32_t inWordLen; // the length(by word) of plaintext or cipher
  69. uint32_t En_De; // 0x33333333- encrypt, 0x44444444 - decrypt
  70. uint32_t Mode; // 0x11111111 - ECB, 0x22222222 - CBC
  71. uint32_t keyMode; // TDES key mode: 0x55555555-key,0x66666666-2key, 0x77777777-3key
  72. } DES_PARM;
  73. /**
  74. * @brief DES_Init
  75. * @return DES_Init_OK, DES/TDES Init success; othets: DES/TDES Init fail
  76. * @note
  77. */
  78. uint32_t DES_Init(DES_PARM* parm);
  79. /**
  80. * @brief DES crypto
  81. * @param[in] parm pointer to DES/TDES context and the detail please refer to struct DES_PARM in DES.h
  82. * @return DES_Crypto_OK, DES/TDES crypto success; othets: DES/TDES crypto fail(reference to the definition by enum variation)
  83. * @note 1.Please refer to the demo in user guidance before using this function
  84. * 2.Input and output can be the same buffer
  85. * 3. IV can be NULL when ECB mode
  86. * 4. The word lengrh of message must be as times as 2.
  87. * 5. If the input is in byte, make sure align by word.
  88. */
  89. uint32_t DES_Crypto(DES_PARM* parm);
  90. /**
  91. * @brief DES close
  92. * @return none
  93. * @note if you want to close DES algorithm, this function can be recalled.
  94. */
  95. void DES_Close(void);
  96. /**
  97. * @brief Get DES/TDES lib version
  98. * @param[out] type pointer one byte type information represents the type of the lib, like Commercial version.\
  99. * @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.
  100. * @param[out] customer pointer one byte customer information represents customer ID. for example, 0x00 stands for standard version, 0x01 is for Tianyu customized version...
  101. * @param[out] date pointer array which include three bytes date information. If the returned bytes are 18,9,13,this denotes September 13,2018
  102. * @param[out] version pointer one byte version information represents develop version of the lib. e.g. 0x12 denotes version 1.2.
  103. * @return none
  104. * @1.You can recall this function to get DES/TDES lib information
  105. */
  106. void DES_Version(uint8_t* type, uint8_t* customer, uint8_t date[3], uint8_t* version);
  107. #endif