Advertisement
Soverein

Untitled

Apr 18th, 2023
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SubstitutionBox
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. byte[] S = new byte[256] { 99, 124, 119, 123, 242, 107, 111, 197, 48, 1, 103, 43, 254, 215, 171, 118,
  10. 202, 130, 201, 125, 250, 89, 71, 240, 173, 212, 162, 175, 156, 164, 114, 192,
  11. 183, 253, 147, 38, 54, 63, 247, 204, 52, 165, 229, 241, 113, 216, 49, 21,
  12. 4, 199, 35, 195, 24, 150, 5, 154, 7, 18, 128, 226, 235, 39, 178, 117,
  13. 9, 131, 44, 26, 27, 110, 90, 160, 82, 59, 214, 179, 41, 227, 47, 132,
  14. 83, 209, 0, 237, 32, 252, 177, 91, 106, 203, 190, 57, 74, 76, 88, 207,
  15. 208, 239, 170, 251, 67, 77, 51, 133, 69, 249, 2, 127, 80, 60, 159, 168,
  16. 81, 163, 64, 143, 146, 157, 56, 245, 188, 182, 218, 33, 16, 255, 243, 210,
  17. 205, 12, 19, 236, 95, 151, 68, 23, 196, 167, 126, 61, 100, 93, 25, 115,
  18. 96, 129, 79, 220, 34, 42, 144, 136, 70, 238, 184, 20, 222, 94, 11, 219,
  19. 224, 50, 58, 10, 73, 6, 36, 92, 194, 211, 172, 98, 145, 149, 228, 121,
  20. 231, 200, 55, 109, 141, 213, 78, 169, 108, 86, 244, 234, 101, 122, 174, 8,
  21. 186, 120, 37, 46, 28, 166, 180, 198, 232, 221, 116, 31, 75, 189, 139, 138,
  22. 112, 62, 181, 102, 72, 3, 246, 14, 97, 53, 87, 185, 134, 193, 29, 158,
  23. 225, 248, 152, 17, 105, 217, 142, 148, 155, 30, 135, 233, 206, 85, 40, 223,
  24. 140, 161, 137, 13, 191, 230, 66, 104, 65, 153, 45, 15, 176, 84, 187, 22
  25. };
  26.  
  27. int[,] linearApproxTable = new int[256, 256];
  28.  
  29. for (int inputByte = 0; inputByte < 256; inputByte++)
  30. {
  31. for (int outputByte = 0; outputByte < 256; outputByte++)
  32. {
  33. int count = 0;
  34. for (int i = 0; i < 256; i++)
  35. {
  36. if ((S[i] & inputByte) == (outputByte & S[i]))
  37. {
  38. count++;
  39. }
  40. }
  41. linearApproxTable[inputByte, outputByte] = 2 * count - 256;
  42. }
  43. }
  44.  
  45. // виведення таблиці лінійних апроксимацій у консоль
  46. for (int i = 0; i < 256; i++)
  47. {
  48. for (int j = 0; j < 256; j++)
  49. {
  50. Console.Write("{0,4}", linearApproxTable[i, j]);
  51. }
  52. Console.WriteLine();
  53. }
  54.  
  55. // Приклад використання таблиці лінійних апроксимацій для знаходження найкращої лінійної апроксимації
  56.  
  57. int maxAbsCount = 0;
  58. int bestInputByte = 0;
  59. int bestOutputByte = 0;
  60.  
  61. for (int inputByte = 0; inputByte < 256; inputByte++)
  62. {
  63. for (int outputByte = 0; outputByte < 256; outputByte++)
  64. {
  65. if (inputByte == 0 && outputByte == 0) continue; // пропускаємо [0][0]
  66.  
  67. int count = linearApproxTable[inputByte, outputByte];
  68. int absCount = Math.Abs(count);
  69.  
  70. if (absCount > maxAbsCount)
  71. {
  72. maxAbsCount = absCount;
  73. bestInputByte = inputByte;
  74. bestOutputByte = outputByte;
  75. }
  76. }
  77. }
  78.  
  79. Console.WriteLine("Best linear approximation: Pr[X*Y=0] = {0}/{1}", maxAbsCount, 256);
  80. Console.WriteLine("Input byte: 0x{0:X2}", bestInputByte);
  81. Console.WriteLine("Output byte: 0x{0:X2}", bestOutputByte);
  82. Console.ReadKey();
  83.  
  84.  
  85. }
  86. }
  87. }
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement