You are here

class ParagonIE_Sodium_Core32_HChaCha20 in Automatic Updates 7

Same name and namespace in other branches
  1. 8 vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php \ParagonIE_Sodium_Core32_HChaCha20

Class ParagonIE_Sodium_Core_HChaCha20

Hierarchy

Expanded class hierarchy of ParagonIE_Sodium_Core32_HChaCha20

1 string reference to 'ParagonIE_Sodium_Core32_HChaCha20'
HChaCha20.php in vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php

File

vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php, line 10

View source
class ParagonIE_Sodium_Core32_HChaCha20 extends ParagonIE_Sodium_Core32_ChaCha20 {

  /**
   * @param string $in
   * @param string $key
   * @param string|null $c
   * @return string
   * @throws SodiumException
   * @throws TypeError
   */
  public static function hChaCha20($in = '', $key = '', $c = null) {
    $ctx = array();
    if ($c === null) {
      $ctx[0] = new ParagonIE_Sodium_Core32_Int32(array(
        0x6170,
        0x7865,
      ));
      $ctx[1] = new ParagonIE_Sodium_Core32_Int32(array(
        0x3320,
        0x646e,
      ));
      $ctx[2] = new ParagonIE_Sodium_Core32_Int32(array(
        0x7962,
        0x2d32,
      ));
      $ctx[3] = new ParagonIE_Sodium_Core32_Int32(array(
        0x6b20,
        0x6574,
      ));
    }
    else {
      $ctx[0] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c, 0, 4));
      $ctx[1] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c, 4, 4));
      $ctx[2] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c, 8, 4));
      $ctx[3] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c, 12, 4));
    }
    $ctx[4] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 0, 4));
    $ctx[5] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 4, 4));
    $ctx[6] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 8, 4));
    $ctx[7] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 12, 4));
    $ctx[8] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 16, 4));
    $ctx[9] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 20, 4));
    $ctx[10] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 24, 4));
    $ctx[11] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key, 28, 4));
    $ctx[12] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in, 0, 4));
    $ctx[13] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in, 4, 4));
    $ctx[14] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in, 8, 4));
    $ctx[15] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in, 12, 4));
    return self::hChaCha20Bytes($ctx);
  }

  /**
   * @param array $ctx
   * @return string
   * @throws SodiumException
   * @throws TypeError
   */
  protected static function hChaCha20Bytes(array $ctx) {

    /** @var ParagonIE_Sodium_Core32_Int32 $x0 */
    $x0 = $ctx[0];

    /** @var ParagonIE_Sodium_Core32_Int32 $x1 */
    $x1 = $ctx[1];

    /** @var ParagonIE_Sodium_Core32_Int32 $x2 */
    $x2 = $ctx[2];

    /** @var ParagonIE_Sodium_Core32_Int32 $x3 */
    $x3 = $ctx[3];

    /** @var ParagonIE_Sodium_Core32_Int32 $x4 */
    $x4 = $ctx[4];

    /** @var ParagonIE_Sodium_Core32_Int32 $x5 */
    $x5 = $ctx[5];

    /** @var ParagonIE_Sodium_Core32_Int32 $x6 */
    $x6 = $ctx[6];

    /** @var ParagonIE_Sodium_Core32_Int32 $x7 */
    $x7 = $ctx[7];

    /** @var ParagonIE_Sodium_Core32_Int32 $x8 */
    $x8 = $ctx[8];

    /** @var ParagonIE_Sodium_Core32_Int32 $x9 */
    $x9 = $ctx[9];

    /** @var ParagonIE_Sodium_Core32_Int32 $x10 */
    $x10 = $ctx[10];

    /** @var ParagonIE_Sodium_Core32_Int32 $x11 */
    $x11 = $ctx[11];

    /** @var ParagonIE_Sodium_Core32_Int32 $x12 */
    $x12 = $ctx[12];

    /** @var ParagonIE_Sodium_Core32_Int32 $x13 */
    $x13 = $ctx[13];

    /** @var ParagonIE_Sodium_Core32_Int32 $x14 */
    $x14 = $ctx[14];

    /** @var ParagonIE_Sodium_Core32_Int32 $x15 */
    $x15 = $ctx[15];
    for ($i = 0; $i < 10; ++$i) {

      # QUARTERROUND( x0,  x4,  x8,  x12)
      list($x0, $x4, $x8, $x12) = self::quarterRound($x0, $x4, $x8, $x12);

      # QUARTERROUND( x1,  x5,  x9,  x13)
      list($x1, $x5, $x9, $x13) = self::quarterRound($x1, $x5, $x9, $x13);

      # QUARTERROUND( x2,  x6,  x10,  x14)
      list($x2, $x6, $x10, $x14) = self::quarterRound($x2, $x6, $x10, $x14);

      # QUARTERROUND( x3,  x7,  x11,  x15)
      list($x3, $x7, $x11, $x15) = self::quarterRound($x3, $x7, $x11, $x15);

      # QUARTERROUND( x0,  x5,  x10,  x15)
      list($x0, $x5, $x10, $x15) = self::quarterRound($x0, $x5, $x10, $x15);

      # QUARTERROUND( x1,  x6,  x11,  x12)
      list($x1, $x6, $x11, $x12) = self::quarterRound($x1, $x6, $x11, $x12);

      # QUARTERROUND( x2,  x7,  x8,  x13)
      list($x2, $x7, $x8, $x13) = self::quarterRound($x2, $x7, $x8, $x13);

      # QUARTERROUND( x3,  x4,  x9,  x14)
      list($x3, $x4, $x9, $x14) = self::quarterRound($x3, $x4, $x9, $x14);
    }
    return $x0
      ->toReverseString() . $x1
      ->toReverseString() . $x2
      ->toReverseString() . $x3
      ->toReverseString() . $x12
      ->toReverseString() . $x13
      ->toReverseString() . $x14
      ->toReverseString() . $x15
      ->toReverseString();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ParagonIE_Sodium_Core32_ChaCha20::encryptBytes public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core32_ChaCha20::ietfStream public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core32_ChaCha20::ietfStreamXorIc public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core32_ChaCha20::quarterRound protected static function The ChaCha20 quarter round function. Works on four 32-bit integers.
ParagonIE_Sodium_Core32_ChaCha20::stream public static function @internal You should not use this directly from another application 1
ParagonIE_Sodium_Core32_ChaCha20::streamXorIc public static function @internal You should not use this directly from another application 1
ParagonIE_Sodium_Core32_HChaCha20::hChaCha20 public static function
ParagonIE_Sodium_Core32_HChaCha20::hChaCha20Bytes protected static function
ParagonIE_Sodium_Core_Util::abs public static function
ParagonIE_Sodium_Core_Util::bin2hex public static function Convert a binary string into a hexadecimal string without cache-timing leaks
ParagonIE_Sodium_Core_Util::bin2hexUpper public static function Convert a binary string into a hexadecimal string without cache-timing leaks, returning uppercase letters (as per RFC 4648)
ParagonIE_Sodium_Core_Util::chrToInt public static function Cache-timing-safe variant of ord()
ParagonIE_Sodium_Core_Util::compare public static function Compares two strings.
ParagonIE_Sodium_Core_Util::declareScalarType public static function If a variable does not match a given type, throw a TypeError.
ParagonIE_Sodium_Core_Util::hashEquals public static function Evaluate whether or not two strings are equal (in constant-time)
ParagonIE_Sodium_Core_Util::hex2bin public static function Convert a hexadecimal string into a binary string without cache-timing leaks
ParagonIE_Sodium_Core_Util::intArrayToString public static function Turn an array of integers into a string
ParagonIE_Sodium_Core_Util::intToChr public static function Cache-timing-safe variant of ord()
ParagonIE_Sodium_Core_Util::isMbStringOverride protected static function Returns whether or not mbstring.func_overload is in effect.
ParagonIE_Sodium_Core_Util::load64_le public static function Load a 8 character substring into an integer
ParagonIE_Sodium_Core_Util::load_3 public static function Load a 3 character substring into an integer
ParagonIE_Sodium_Core_Util::load_4 public static function Load a 4 character substring into an integer
ParagonIE_Sodium_Core_Util::memcmp public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core_Util::mul public static function Multiply two integers in constant-time
ParagonIE_Sodium_Core_Util::numericTo64BitInteger public static function Convert any arbitrary numbers into two 32-bit integers that represent a 64-bit integer.
ParagonIE_Sodium_Core_Util::store32_le public static function Store a 32-bit integer into a string, treating it as little-endian.
ParagonIE_Sodium_Core_Util::store64_le public static function Stores a 64-bit integer as an string, treating it as little-endian.
ParagonIE_Sodium_Core_Util::store_3 public static function Store a 24-bit integer into a string, treating it as big-endian.
ParagonIE_Sodium_Core_Util::store_4 public static function Store a 32-bit integer into a string, treating it as big-endian.
ParagonIE_Sodium_Core_Util::stringToIntArray public static function Turn a string into an array of integers
ParagonIE_Sodium_Core_Util::strlen public static function Safe string length
ParagonIE_Sodium_Core_Util::substr public static function Safe substring
ParagonIE_Sodium_Core_Util::verify_16 public static function Compare a 16-character byte string in constant time.
ParagonIE_Sodium_Core_Util::verify_32 public static function Compare a 32-character byte string in constant time.
ParagonIE_Sodium_Core_Util::xorStrings public static function Calculate $a ^ $b for two strings.