Base64DotSlash.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?php
  2. namespace ParagonIE\ConstantTime;
  3. /**
  4. * Copyright (c) 2016 Paragon Initiative Enterprises.
  5. * Copyright (c) 2014 Steve "Sc00bz" Thomas (steve at tobtu dot com)
  6. *
  7. * Permission is hereby granted, free of charge, to any person obtaining a copy
  8. * of this software and associated documentation files (the "Software"), to deal
  9. * in the Software without restriction, including without limitation the rights
  10. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. * copies of the Software, and to permit persons to whom the Software is
  12. * furnished to do so, subject to the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be included in all
  15. * copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  23. * SOFTWARE.
  24. */
  25. /**
  26. * Class Base64DotSlash
  27. * ./[A-Z][a-z][0-9]
  28. *
  29. * @package ParagonIE\ConstantTime
  30. */
  31. abstract class Base64DotSlash extends Base64
  32. {
  33. /**
  34. * Uses bitwise operators instead of table-lookups to turn 6-bit integers
  35. * into 8-bit integers.
  36. *
  37. * Base64 character set:
  38. * ./ [A-Z] [a-z] [0-9]
  39. * 0x2e-0x2f, 0x41-0x5a, 0x61-0x7a, 0x30-0x39
  40. *
  41. * @param int $src
  42. * @return int
  43. */
  44. protected static function decode6Bits($src)
  45. {
  46. $ret = -1;
  47. // if ($src > 0x2d && $src < 0x30) ret += $src - 0x2e + 1; // -45
  48. $ret += (((0x2d - $src) & ($src - 0x30)) >> 8) & ($src - 45);
  49. // if ($src > 0x40 && $src < 0x5b) ret += $src - 0x41 + 2 + 1; // -62
  50. $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 62);
  51. // if ($src > 0x60 && $src < 0x7b) ret += $src - 0x61 + 28 + 1; // -68
  52. $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 68);
  53. // if ($src > 0x2f && $src < 0x3a) ret += $src - 0x30 + 54 + 1; // 7
  54. $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 7);
  55. return $ret;
  56. }
  57. /**
  58. * Uses bitwise operators instead of table-lookups to turn 8-bit integers
  59. * into 6-bit integers.
  60. *
  61. * @param int $src
  62. * @return string
  63. */
  64. protected static function encode6Bits($src)
  65. {
  66. $src += 0x2e;
  67. // if ($src > 0x2f) $src += 0x41 - 0x30; // 17
  68. $src += ((0x2f - $src) >> 8) & 17;
  69. // if ($src > 0x5a) $src += 0x61 - 0x5b; // 6
  70. $src += ((0x5a - $src) >> 8) & 6;
  71. // if ($src > 0x7a) $src += 0x30 - 0x7b; // -75
  72. $src -= ((0x7a - $src) >> 8) & 75;
  73. return \pack('C', $src);
  74. }
  75. }