UserManagementShared.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // *****************************************************************************
  2. // 版权所有(C)2023~2099 上海骄成超声波技术有限公司
  3. // 保留所有权利
  4. // *****************************************************************************
  5. // 作者 : 杨坚
  6. // 版本 : 1.0
  7. // 功能说明:
  8. // 用户管理共享
  9. // *****************************************************************************
  10. #ifndef USERMANAGEMENTSHARED_H
  11. #define USERMANAGEMENTSHARED_H
  12. #include <string>
  13. // 特权等级
  14. enum enPrivilegeLevel
  15. {
  16. Operator = 0, //操作工
  17. Technician, // 技术员
  18. Engineer, //工程师
  19. Administrator, // 管理员
  20. Adm, // 这个目前不知道干啥用的....
  21. SeniorOperator
  22. };
  23. // 简单字符串亦或
  24. //加密解密key
  25. const int g_nKey[7] = { 9, 9, 7, 8, 5, 6, 7};
  26. class JEncryption
  27. {
  28. public:
  29. JEncryption();
  30. ~JEncryption();
  31. public:
  32. // 加密
  33. static std::string Encryption(const std::string str)
  34. {
  35. std::string c = str;
  36. int len = c.size();
  37. for(int i = 0; i < len; i++)
  38. {
  39. c[i] = c[i] ^ g_nKey[i % 7];
  40. }
  41. return c;
  42. }
  43. // 解密
  44. static std::string Decode(const std::string str)
  45. {
  46. std::string c = str;
  47. int len = c.size();
  48. for(int i = 0; i < len; i++)
  49. {
  50. c[i] = c[i] ^ g_nKey[i % 7];
  51. }
  52. return c;
  53. }
  54. };
  55. #endif // USERMANAGEMENTSHARED_H