StaticTree.cs 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
  2. using System;
  3. /*
  4. * $Id: StaticTree.cs,v 1.2 2008-05-10 09:35:40 bouncy Exp $
  5. *
  6. Copyright (c) 2000,2001,2002,2003 ymnk, JCraft,Inc. All rights reserved.
  7. Redistribution and use in source and binary forms, with or without
  8. modification, are permitted provided that the following conditions are met:
  9. 1. Redistributions of source code must retain the above copyright notice,
  10. this list of conditions and the following disclaimer.
  11. 2. Redistributions in binary form must reproduce the above copyright
  12. notice, this list of conditions and the following disclaimer in
  13. the documentation and/or other materials provided with the distribution.
  14. 3. The names of the authors may not be used to endorse or promote products
  15. derived from this software without specific prior written permission.
  16. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  17. INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  18. FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
  19. INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
  22. OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  23. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  24. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  25. EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. /*
  28. * This program is based on zlib-1.1.3, so all credit should go authors
  29. * Jean-loup Gailly(jloup@gzip.org) and Mark Adler(madler@alumni.caltech.edu)
  30. * and contributors of zlib.
  31. */
  32. namespace Org.BouncyCastle.Utilities.Zlib {
  33. internal sealed class StaticTree{
  34. private const int MAX_BITS=15;
  35. private const int BL_CODES=19;
  36. private const int D_CODES=30;
  37. private const int LITERALS=256;
  38. private const int LENGTH_CODES=29;
  39. private const int L_CODES=(LITERALS+1+LENGTH_CODES);
  40. // Bit length codes must not exceed MAX_BL_BITS bits
  41. internal const int MAX_BL_BITS=7;
  42. internal static readonly short[] static_ltree = {
  43. 12, 8, 140, 8, 76, 8, 204, 8, 44, 8,
  44. 172, 8, 108, 8, 236, 8, 28, 8, 156, 8,
  45. 92, 8, 220, 8, 60, 8, 188, 8, 124, 8,
  46. 252, 8, 2, 8, 130, 8, 66, 8, 194, 8,
  47. 34, 8, 162, 8, 98, 8, 226, 8, 18, 8,
  48. 146, 8, 82, 8, 210, 8, 50, 8, 178, 8,
  49. 114, 8, 242, 8, 10, 8, 138, 8, 74, 8,
  50. 202, 8, 42, 8, 170, 8, 106, 8, 234, 8,
  51. 26, 8, 154, 8, 90, 8, 218, 8, 58, 8,
  52. 186, 8, 122, 8, 250, 8, 6, 8, 134, 8,
  53. 70, 8, 198, 8, 38, 8, 166, 8, 102, 8,
  54. 230, 8, 22, 8, 150, 8, 86, 8, 214, 8,
  55. 54, 8, 182, 8, 118, 8, 246, 8, 14, 8,
  56. 142, 8, 78, 8, 206, 8, 46, 8, 174, 8,
  57. 110, 8, 238, 8, 30, 8, 158, 8, 94, 8,
  58. 222, 8, 62, 8, 190, 8, 126, 8, 254, 8,
  59. 1, 8, 129, 8, 65, 8, 193, 8, 33, 8,
  60. 161, 8, 97, 8, 225, 8, 17, 8, 145, 8,
  61. 81, 8, 209, 8, 49, 8, 177, 8, 113, 8,
  62. 241, 8, 9, 8, 137, 8, 73, 8, 201, 8,
  63. 41, 8, 169, 8, 105, 8, 233, 8, 25, 8,
  64. 153, 8, 89, 8, 217, 8, 57, 8, 185, 8,
  65. 121, 8, 249, 8, 5, 8, 133, 8, 69, 8,
  66. 197, 8, 37, 8, 165, 8, 101, 8, 229, 8,
  67. 21, 8, 149, 8, 85, 8, 213, 8, 53, 8,
  68. 181, 8, 117, 8, 245, 8, 13, 8, 141, 8,
  69. 77, 8, 205, 8, 45, 8, 173, 8, 109, 8,
  70. 237, 8, 29, 8, 157, 8, 93, 8, 221, 8,
  71. 61, 8, 189, 8, 125, 8, 253, 8, 19, 9,
  72. 275, 9, 147, 9, 403, 9, 83, 9, 339, 9,
  73. 211, 9, 467, 9, 51, 9, 307, 9, 179, 9,
  74. 435, 9, 115, 9, 371, 9, 243, 9, 499, 9,
  75. 11, 9, 267, 9, 139, 9, 395, 9, 75, 9,
  76. 331, 9, 203, 9, 459, 9, 43, 9, 299, 9,
  77. 171, 9, 427, 9, 107, 9, 363, 9, 235, 9,
  78. 491, 9, 27, 9, 283, 9, 155, 9, 411, 9,
  79. 91, 9, 347, 9, 219, 9, 475, 9, 59, 9,
  80. 315, 9, 187, 9, 443, 9, 123, 9, 379, 9,
  81. 251, 9, 507, 9, 7, 9, 263, 9, 135, 9,
  82. 391, 9, 71, 9, 327, 9, 199, 9, 455, 9,
  83. 39, 9, 295, 9, 167, 9, 423, 9, 103, 9,
  84. 359, 9, 231, 9, 487, 9, 23, 9, 279, 9,
  85. 151, 9, 407, 9, 87, 9, 343, 9, 215, 9,
  86. 471, 9, 55, 9, 311, 9, 183, 9, 439, 9,
  87. 119, 9, 375, 9, 247, 9, 503, 9, 15, 9,
  88. 271, 9, 143, 9, 399, 9, 79, 9, 335, 9,
  89. 207, 9, 463, 9, 47, 9, 303, 9, 175, 9,
  90. 431, 9, 111, 9, 367, 9, 239, 9, 495, 9,
  91. 31, 9, 287, 9, 159, 9, 415, 9, 95, 9,
  92. 351, 9, 223, 9, 479, 9, 63, 9, 319, 9,
  93. 191, 9, 447, 9, 127, 9, 383, 9, 255, 9,
  94. 511, 9, 0, 7, 64, 7, 32, 7, 96, 7,
  95. 16, 7, 80, 7, 48, 7, 112, 7, 8, 7,
  96. 72, 7, 40, 7, 104, 7, 24, 7, 88, 7,
  97. 56, 7, 120, 7, 4, 7, 68, 7, 36, 7,
  98. 100, 7, 20, 7, 84, 7, 52, 7, 116, 7,
  99. 3, 8, 131, 8, 67, 8, 195, 8, 35, 8,
  100. 163, 8, 99, 8, 227, 8
  101. };
  102. internal static readonly short[] static_dtree = {
  103. 0, 5, 16, 5, 8, 5, 24, 5, 4, 5,
  104. 20, 5, 12, 5, 28, 5, 2, 5, 18, 5,
  105. 10, 5, 26, 5, 6, 5, 22, 5, 14, 5,
  106. 30, 5, 1, 5, 17, 5, 9, 5, 25, 5,
  107. 5, 5, 21, 5, 13, 5, 29, 5, 3, 5,
  108. 19, 5, 11, 5, 27, 5, 7, 5, 23, 5
  109. };
  110. internal static readonly StaticTree static_l_desc =
  111. new StaticTree(static_ltree, ZTree.extra_lbits,
  112. LITERALS+1, L_CODES, MAX_BITS);
  113. internal static readonly StaticTree static_d_desc =
  114. new StaticTree(static_dtree, ZTree.extra_dbits,
  115. 0, D_CODES, MAX_BITS);
  116. internal static readonly StaticTree static_bl_desc =
  117. new StaticTree(null, ZTree.extra_blbits,
  118. 0, BL_CODES, MAX_BL_BITS);
  119. internal short[] static_tree; // static tree or null
  120. internal int[] extra_bits; // extra bits for each code or null
  121. internal int extra_base; // base index for extra_bits
  122. internal int elems; // max number of elements in the tree
  123. internal int max_length; // max bit length for the codes
  124. internal StaticTree(short[] static_tree,
  125. int[] extra_bits,
  126. int extra_base,
  127. int elems,
  128. int max_length
  129. ){
  130. this.static_tree=static_tree;
  131. this.extra_bits=extra_bits;
  132. this.extra_base=extra_base;
  133. this.elems=elems;
  134. this.max_length=max_length;
  135. }
  136. }
  137. }
  138. #endif