crypt1.cpp 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. extern uint CRCTab[256];
  2. void CryptData::SetKey13(const char *Password)
  3. {
  4. Key13[0]=Key13[1]=Key13[2]=0;
  5. for (size_t I=0;Password[I]!=0;I++)
  6. {
  7. byte P=Password[I];
  8. Key13[0]+=P;
  9. Key13[1]^=P;
  10. Key13[2]+=P;
  11. Key13[2]=(byte)rotls(Key13[2],1,8);
  12. }
  13. }
  14. void CryptData::SetKey15(const char *Password)
  15. {
  16. InitCRC32(CRCTab);
  17. uint PswCRC=CRC32(0xffffffff,Password,strlen(Password));
  18. Key15[0]=PswCRC&0xffff;
  19. Key15[1]=(PswCRC>>16)&0xffff;
  20. Key15[2]=Key15[3]=0;
  21. for (size_t I=0;Password[I]!=0;I++)
  22. {
  23. byte P=Password[I];
  24. Key15[2]^=P^CRCTab[P];
  25. Key15[3]+=P+(CRCTab[P]>>16);
  26. }
  27. }
  28. void CryptData::SetAV15Encryption()
  29. {
  30. InitCRC32(CRCTab);
  31. Method=CRYPT_RAR15;
  32. Key15[0]=0x4765;
  33. Key15[1]=0x9021;
  34. Key15[2]=0x7382;
  35. Key15[3]=0x5215;
  36. }
  37. void CryptData::SetCmt13Encryption()
  38. {
  39. Method=CRYPT_RAR13;
  40. Key13[0]=0;
  41. Key13[1]=7;
  42. Key13[2]=77;
  43. }
  44. void CryptData::Decrypt13(byte *Data,size_t Count)
  45. {
  46. while (Count--)
  47. {
  48. Key13[1]+=Key13[2];
  49. Key13[0]+=Key13[1];
  50. *Data-=Key13[0];
  51. Data++;
  52. }
  53. }
  54. void CryptData::Crypt15(byte *Data,size_t Count)
  55. {
  56. while (Count--)
  57. {
  58. Key15[0]+=0x1234;
  59. Key15[1]^=CRCTab[(Key15[0] & 0x1fe)>>1];
  60. Key15[2]-=CRCTab[(Key15[0] & 0x1fe)>>1]>>16;
  61. Key15[0]^=Key15[2];
  62. Key15[3]=rotrs(Key15[3]&0xffff,1,16)^Key15[1];
  63. Key15[3]=rotrs(Key15[3]&0xffff,1,16);
  64. Key15[0]^=Key15[3];
  65. *Data^=(byte)(Key15[0]>>8);
  66. Data++;
  67. }
  68. }