文本混淆-第1部分,共2部分

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本混淆-第1部分,共2部分相关的知识,希望对你有一定的参考价值。

  1. using System;
  2.  
  3.  
  4. namespace Kyrathasoft.Obfuscate {
  5.  
  6. [Serializable]
  7. public class serText {
  8.  
  9. //constructor
  10. public serText(string inputText, bool theWorks) {
  11. theText = inputText;
  12. if (!theWorks) {
  13. startIndex = 0;
  14. theLength = inputText.Length;
  15. reverse = false;
  16. shift = false;
  17. }
  18. else {
  19. reverse = true;
  20. shift = true;
  21. }
  22. }
  23.  
  24. //constructor
  25. public serText(string inputText, int start, int length, bool reverse, bool shift) {
  26. theText = inputText;
  27. startIndex = start;
  28. theLength = length;
  29. this.shift = shift;
  30. this.reverse = reverse;
  31. }
  32.  
  33.  
  34. //constructor
  35. public serText(string inputText, int start, int length, bool theWorks) {
  36. theText = inputText;
  37. startIndex = start;
  38. theLength = length;
  39.  
  40. if (theWorks) {
  41. this.shift = true;
  42. this.reverse = true;
  43. }
  44.  
  45. }
  46.  
  47.  
  48.  
  49.  
  50. private string theText;
  51. public string TheText {
  52. get { return theText; }
  53. set { theText = value; }
  54. }
  55.  
  56.  
  57. private int startIndex;
  58. public int StartIndex {
  59. get { return startIndex; }
  60. set { startIndex = value; }
  61. }
  62.  
  63.  
  64. private int theLength;
  65. public int TheLength {
  66. get { return theLength; }
  67. set { theLength = value; }
  68. }
  69.  
  70. private bool reverse;
  71. public bool Reverse {
  72. get { return reverse; }
  73. set { reverse = value; }
  74. }
  75.  
  76. private bool shift;
  77. public bool Shift {
  78. get { return shift; }
  79. set { shift = value; }
  80. }
  81.  
  82.  
  83.  
  84. }
  85. }

以上是关于文本混淆-第1部分,共2部分的主要内容,如果未能解决你的问题,请参考以下文章

文本混淆-第二部分,共二部分

Golang 对于 DevOps 之利弊(第 1 部分,共 6 部分):Goroutines, Panics 和 Errors

文本输入 Excel VBA 上的文本框文本消失 - 第 2 部分

汽车VIN编码的详细规则

Elasticsearch如何使用 Elasticsearch 6.2 搜索中文日语和韩语文本 - 第 3 部分:语言检测工具

Elasticsearch如何使用 Elasticsearch 6.2 搜索中文日文和韩文文本 - 第 2 部分: 多字段