rsa.h 799 B

123456789101112131415161718192021
  1. #ifndef __RSA
  2. #define __RSA
  3. #ifndef KERNEL_NEW
  4. #include <default.h>
  5. #endif
  6. /* Begin Auto-Generated Part */
  7. typedef struct{unsigned char Len;unsigned char Data[];}BN;
  8. typedef struct{unsigned long state[4];unsigned long count[2];unsigned char buffer[64];}MD5_CTX;
  9. #define BN_power17Mod _rom_call(void,(BN*,const BN*,const BN*),122)
  10. #define BN_powerMod _rom_call(void,(BN*,const BN*,const BN*,const BN*),123)
  11. #define BN_prodMod _rom_call(void,(BN*,const BN*,const BN*),124)
  12. #define cdecrypt _rom_call(void,(BN*,char*,long,BN*),127)
  13. #define MD5Done _rom_call(void,(BN*,MD5_CTX*),257)
  14. #define MD5Final _rom_call(void,(unsigned char*,MD5_CTX*),256)
  15. #define MD5Init _rom_call(void,(MD5_CTX*),254)
  16. #define MD5Update _rom_call(void,(MD5_CTX*,unsigned char*,long),255)
  17. /* End Auto-Generated Part */
  18. #endif