Base64UrlSafe.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 Base64UrlSafe 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. * 0x41-0x5a, 0x61-0x7a, 0x30-0x39, 0x2d, 0x5f
  40. *
  41. * @param int $src
  42. * @return int
  43. */
  44. protected static function decode6Bits($src)
  45. {
  46. $ret = -1;
  47. // if ($src > 0x40 && $src < 0x5b) $ret += $src - 0x41 + 1; // -64
  48. $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64);
  49. // if ($src > 0x60 && $src < 0x7b) $ret += $src - 0x61 + 26 + 1; // -70
  50. $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 70);
  51. // if ($src > 0x2f && $src < 0x3a) $ret += $src - 0x30 + 52 + 1; // 5
  52. $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 5);
  53. // if ($src == 0x2c) $ret += 62 + 1;
  54. $ret += (((0x2c - $src) & ($src - 0x2e)) >> 8) & 63;
  55. // if ($src == 0x5f) ret += 63 + 1;
  56. $ret += (((0x5e - $src) & ($src - 0x60)) >> 8) & 64;
  57. return $ret;
  58. }
  59. /**
  60. * Uses bitwise operators instead of table-lookups to turn 8-bit integers
  61. * into 6-bit integers.
  62. *
  63. * @param int $src
  64. * @return string
  65. */
  66. protected static function encode6Bits($src)
  67. {
  68. $diff = 0x41;
  69. // if ($src > 25) $diff += 0x61 - 0x41 - 26; // 6
  70. $diff += ((25 - $src) >> 8) & 6;
  71. // if ($src > 51) $diff += 0x30 - 0x61 - 26; // -75
  72. $diff -= ((51 - $src) >> 8) & 75;
  73. // if ($src > 61) $diff += 0x2d - 0x30 - 10; // -13
  74. $diff -= ((61 - $src) >> 8) & 13;
  75. // if ($src > 62) $diff += 0x5f - 0x2b - 1; // 3
  76. $diff += ((62 - $src) >> 8) & 49;
  77. return \pack('C', $src + $diff);
  78. }
  79. }