sureware.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:9k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /*
  2. * Written by Corinne Dive-Reclus(cdive@baltimore.com)
  3. *
  4. * Copyright@2001 Baltimore Technologies Ltd.
  5. * *
  6. * THIS FILE IS PROVIDED BY BALTIMORE TECHNOLOGIES ``AS IS'' AND *
  7. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * 
  8. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE *
  9. * ARE DISCLAIMED.  IN NO EVENT SHALL BALTIMORE TECHNOLOGIES BE LIABLE *
  10. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL *
  11. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS *
  12. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) *
  13. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT *
  14. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY *
  15. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *
  16. * SUCH DAMAGE. *
  17. *
  18. */
  19. #ifdef WIN32
  20. #define SW_EXPORT __declspec ( dllexport )
  21. #else
  22. #define SW_EXPORT
  23. #endif
  24. /*
  25. * List of exposed SureWare errors
  26. */
  27. #define SUREWAREHOOK_ERROR_FAILED -1
  28. #define SUREWAREHOOK_ERROR_FALLBACK -2
  29. #define SUREWAREHOOK_ERROR_UNIT_FAILURE -3
  30. #define SUREWAREHOOK_ERROR_DATA_SIZE -4
  31. #define SUREWAREHOOK_ERROR_INVALID_PAD -5
  32. /*
  33. * -----------------WARNING-----------------------------------
  34. * In all the following functions:
  35. * msg is a string with at least 24 bytes free.
  36. * A 24 bytes string will be concatenated to the existing content of msg. 
  37. */
  38. /*
  39. * SureWare Initialisation function
  40. * in param threadsafe, if !=0, thread safe enabled
  41. * return SureWareHOOK_ERROR_UNIT_FAILURE if failure, 1 if success
  42. */
  43. typedef int SureWareHook_Init_t(char*const msg,int threadsafe);
  44. extern SW_EXPORT SureWareHook_Init_t SureWareHook_Init;
  45. /*
  46. * SureWare Finish function
  47. */
  48. typedef void SureWareHook_Finish_t(void);
  49. extern SW_EXPORT SureWareHook_Finish_t SureWareHook_Finish;
  50. /*
  51. *  PRE_CONDITION:
  52. * DO NOT CALL ANY OF THE FOLLOWING FUNCTIONS IN CASE OF INIT FAILURE
  53. */
  54. /*
  55. * SureWare RAND Bytes function
  56. * In case of failure, the content of buf is unpredictable.
  57. * return 1 if success
  58. * SureWareHOOK_ERROR_FALLBACK if function not available in hardware
  59. * SureWareHOOK_ERROR_FAILED if error while processing
  60. * SureWareHOOK_ERROR_UNIT_FAILURE if hardware failure
  61. * SUREWAREHOOK_ERROR_DATA_SIZE wrong size for buf
  62. *
  63. * in/out param buf : a num bytes long buffer where random bytes will be put
  64. * in param num : the number of bytes into buf
  65. */
  66. typedef int SureWareHook_Rand_Bytes_t(char*const msg,unsigned char *buf, int num);
  67. extern SW_EXPORT SureWareHook_Rand_Bytes_t SureWareHook_Rand_Bytes;
  68. /*
  69. * SureWare RAND Seed function
  70. * Adds some seed to the Hardware Random Number Generator
  71. * return 1 if success
  72. * SureWareHOOK_ERROR_FALLBACK if function not available in hardware
  73. * SureWareHOOK_ERROR_FAILED if error while processing
  74. * SureWareHOOK_ERROR_UNIT_FAILURE if hardware failure
  75. * SUREWAREHOOK_ERROR_DATA_SIZE wrong size for buf
  76. *
  77. * in param buf : the seed to add into the HRNG
  78. * in param num : the number of bytes into buf
  79. */
  80. typedef int SureWareHook_Rand_Seed_t(char*const msg,const void *buf, int num);
  81. extern SW_EXPORT SureWareHook_Rand_Seed_t SureWareHook_Rand_Seed;
  82. /*
  83. * SureWare Load Private Key function
  84. * return 1 if success
  85. * SureWareHOOK_ERROR_FAILED if error while processing
  86. * No hardware is contact for this function.
  87. *
  88. * in param key_id :the name of the private protected key file without the extension
  89. ".sws"
  90. * out param hptr : a pointer to a buffer allocated by SureWare_Hook
  91. * out param num: the effective key length in bytes
  92. * out param keytype: 1 if RSA 2 if DSA
  93. */
  94. typedef int SureWareHook_Load_Privkey_t(char*const msg,const char *key_id,char **hptr,unsigned long *num,char *keytype);
  95. extern SW_EXPORT SureWareHook_Load_Privkey_t SureWareHook_Load_Privkey;
  96. /*
  97. * SureWare Info Public Key function
  98. * return 1 if success
  99. * SureWareHOOK_ERROR_FAILED if error while processing
  100. * No hardware is contact for this function.
  101. *
  102. * in param key_id :the name of the private protected key file without the extension
  103. ".swp"
  104. * out param hptr : a pointer to a buffer allocated by SureWare_Hook
  105. * out param num: the effective key length in bytes
  106. * out param keytype: 1 if RSA 2 if DSA
  107. */
  108. typedef int SureWareHook_Info_Pubkey_t(char*const msg,const char *key_id,unsigned long *num,
  109. char *keytype);
  110. extern SW_EXPORT SureWareHook_Info_Pubkey_t SureWareHook_Info_Pubkey;
  111. /*
  112. * SureWare Load Public Key function
  113. * return 1 if success
  114. * SureWareHOOK_ERROR_FAILED if error while processing
  115. * No hardware is contact for this function.
  116. *
  117. * in param key_id :the name of the public protected key file without the extension
  118. ".swp"
  119. * in param num : the bytes size of n and e
  120. * out param n: where to write modulus in bn format
  121. * out param e: where to write exponent in bn format
  122. */
  123. typedef int SureWareHook_Load_Rsa_Pubkey_t(char*const msg,const char *key_id,unsigned long num,
  124. unsigned long *n, unsigned long *e);
  125. extern SW_EXPORT SureWareHook_Load_Rsa_Pubkey_t SureWareHook_Load_Rsa_Pubkey;
  126. /*
  127. * SureWare Load DSA Public Key function
  128. * return 1 if success
  129. * SureWareHOOK_ERROR_FAILED if error while processing
  130. * No hardware is contact for this function.
  131. *
  132. * in param key_id :the name of the public protected key file without the extension
  133. ".swp"
  134. * in param num : the bytes size of n and e
  135. * out param pub: where to write pub key in bn format
  136. * out param p: where to write prime in bn format
  137. * out param q: where to write sunprime (length 20 bytes) in bn format
  138. * out param g: where to write base in bn format
  139. */
  140. typedef int SureWareHook_Load_Dsa_Pubkey_t(char*const msg,const char *key_id,unsigned long num,
  141. unsigned long *pub, unsigned long *p,unsigned long*q,
  142. unsigned long *g);
  143. extern SW_EXPORT SureWareHook_Load_Dsa_Pubkey_t SureWareHook_Load_Dsa_Pubkey;
  144. /*
  145. * SureWare Free function
  146. * Destroy the key into the hardware if destroy==1
  147. */
  148. typedef void SureWareHook_Free_t(char *p,int destroy);
  149. extern SW_EXPORT SureWareHook_Free_t SureWareHook_Free;
  150. #define SUREWARE_PKCS1_PAD 1
  151. #define SUREWARE_ISO9796_PAD 2
  152. #define SUREWARE_NO_PAD 0
  153. /*
  154. * SureWare RSA Private Decryption
  155. * return 1 if success
  156. * SureWareHOOK_ERROR_FAILED if error while processing
  157. * SureWareHOOK_ERROR_UNIT_FAILURE if hardware failure
  158. * SUREWAREHOOK_ERROR_DATA_SIZE wrong size for buf
  159. *
  160. * in param flen : byte size of from and to
  161. * in param from : encrypted data buffer, should be a not-null valid pointer
  162. * out param tlen: byte size of decrypted data, if error, unexpected value
  163. * out param to : decrypted data buffer, should be a not-null valid pointer
  164. *   in param prsa: a protected key pointer, should be a not-null valid pointer
  165. *   int padding: padding id as follow
  166. * SUREWARE_PKCS1_PAD
  167. * SUREWARE_NO_PAD
  168. *
  169. */
  170. typedef int SureWareHook_Rsa_Priv_Dec_t(char*const msg,int flen,unsigned char *from,
  171. int *tlen,unsigned char *to,
  172. char *prsa,int padding);
  173. extern SW_EXPORT SureWareHook_Rsa_Priv_Dec_t SureWareHook_Rsa_Priv_Dec;
  174. /*
  175. * SureWare RSA Signature
  176. * return 1 if success
  177. * SureWareHOOK_ERROR_FAILED if error while processing
  178. * SureWareHOOK_ERROR_UNIT_FAILURE if hardware failure
  179. * SUREWAREHOOK_ERROR_DATA_SIZE wrong size for buf
  180. *
  181. * in param flen : byte size of from and to
  182. * in param from : encrypted data buffer, should be a not-null valid pointer
  183. * out param tlen: byte size of decrypted data, if error, unexpected value
  184. * out param to : decrypted data buffer, should be a not-null valid pointer
  185. *   in param prsa: a protected key pointer, should be a not-null valid pointer
  186. *   int padding: padding id as follow
  187. * SUREWARE_PKCS1_PAD
  188. * SUREWARE_ISO9796_PAD
  189. *
  190. */
  191. typedef int SureWareHook_Rsa_Sign_t(char*const msg,int flen,unsigned char *from,
  192. int *tlen,unsigned char *to,
  193. char *prsa,int padding);
  194. extern SW_EXPORT SureWareHook_Rsa_Sign_t SureWareHook_Rsa_Sign;
  195. /*
  196. * SureWare DSA Signature
  197. * return 1 if success
  198. * SureWareHOOK_ERROR_FAILED if error while processing
  199. * SureWareHOOK_ERROR_UNIT_FAILURE if hardware failure
  200. * SUREWAREHOOK_ERROR_DATA_SIZE wrong size for buf
  201. *
  202. * in param flen : byte size of from and to
  203. * in param from : encrypted data buffer, should be a not-null valid pointer
  204. * out param to : decrypted data buffer, should be a 40bytes valid pointer
  205. *   in param pdsa: a protected key pointer, should be a not-null valid pointer
  206. *
  207. */
  208. typedef int SureWareHook_Dsa_Sign_t(char*const msg,int flen,const unsigned char *from,
  209. unsigned long *r,unsigned long *s,char *pdsa);
  210. extern SW_EXPORT SureWareHook_Dsa_Sign_t SureWareHook_Dsa_Sign;
  211. /*
  212. * SureWare Mod Exp
  213. * return 1 if success
  214. * SureWareHOOK_ERROR_FAILED if error while processing
  215. * SureWareHOOK_ERROR_UNIT_FAILURE if hardware failure
  216. * SUREWAREHOOK_ERROR_DATA_SIZE wrong size for buf
  217. *
  218. * mod and res are mlen bytes long.
  219. * exp is elen bytes long
  220. * data is dlen bytes long
  221. * mlen,elen and dlen are all multiple of sizeof(unsigned long)
  222. */
  223. typedef int SureWareHook_Mod_Exp_t(char*const msg,int mlen,const unsigned long *mod,
  224. int elen,const unsigned long *exponent,
  225. int dlen,unsigned long *data,
  226. unsigned long *res);
  227. extern SW_EXPORT SureWareHook_Mod_Exp_t SureWareHook_Mod_Exp;