You are here

abstract class ParagonIE_Sodium_Core_HSalsa20 in Automatic Updates 8

Same name and namespace in other branches
  1. 7 vendor/paragonie/sodium_compat/src/Core/HSalsa20.php \ParagonIE_Sodium_Core_HSalsa20

Class ParagonIE_Sodium_Core_HSalsa20

Hierarchy

Expanded class hierarchy of ParagonIE_Sodium_Core_HSalsa20

1 string reference to 'ParagonIE_Sodium_Core_HSalsa20'
HSalsa20.php in vendor/paragonie/sodium_compat/src/Core/HSalsa20.php

File

vendor/paragonie/sodium_compat/src/Core/HSalsa20.php, line 10

View source
abstract class ParagonIE_Sodium_Core_HSalsa20 extends ParagonIE_Sodium_Core_Salsa20 {

  /**
   * Calculate an hsalsa20 hash of a single block
   *
   * HSalsa20 doesn't have a counter and will never be used for more than
   * one block (used to derive a subkey for xsalsa20).
   *
   * @internal You should not use this directly from another application
   *
   * @param string $in
   * @param string $k
   * @param string|null $c
   * @return string
   * @throws TypeError
   */
  public static function hsalsa20($in, $k, $c = null) {
    if ($c === null) {
      $x0 = 0x61707865;
      $x5 = 0x3320646e;
      $x10 = 0x79622d32;
      $x15 = 0x6b206574;
    }
    else {
      $x0 = self::load_4(self::substr($c, 0, 4));
      $x5 = self::load_4(self::substr($c, 4, 4));
      $x10 = self::load_4(self::substr($c, 8, 4));
      $x15 = self::load_4(self::substr($c, 12, 4));
    }
    $x1 = self::load_4(self::substr($k, 0, 4));
    $x2 = self::load_4(self::substr($k, 4, 4));
    $x3 = self::load_4(self::substr($k, 8, 4));
    $x4 = self::load_4(self::substr($k, 12, 4));
    $x11 = self::load_4(self::substr($k, 16, 4));
    $x12 = self::load_4(self::substr($k, 20, 4));
    $x13 = self::load_4(self::substr($k, 24, 4));
    $x14 = self::load_4(self::substr($k, 28, 4));
    $x6 = self::load_4(self::substr($in, 0, 4));
    $x7 = self::load_4(self::substr($in, 4, 4));
    $x8 = self::load_4(self::substr($in, 8, 4));
    $x9 = self::load_4(self::substr($in, 12, 4));
    for ($i = self::ROUNDS; $i > 0; $i -= 2) {
      $x4 ^= self::rotate($x0 + $x12, 7);
      $x8 ^= self::rotate($x4 + $x0, 9);
      $x12 ^= self::rotate($x8 + $x4, 13);
      $x0 ^= self::rotate($x12 + $x8, 18);
      $x9 ^= self::rotate($x5 + $x1, 7);
      $x13 ^= self::rotate($x9 + $x5, 9);
      $x1 ^= self::rotate($x13 + $x9, 13);
      $x5 ^= self::rotate($x1 + $x13, 18);
      $x14 ^= self::rotate($x10 + $x6, 7);
      $x2 ^= self::rotate($x14 + $x10, 9);
      $x6 ^= self::rotate($x2 + $x14, 13);
      $x10 ^= self::rotate($x6 + $x2, 18);
      $x3 ^= self::rotate($x15 + $x11, 7);
      $x7 ^= self::rotate($x3 + $x15, 9);
      $x11 ^= self::rotate($x7 + $x3, 13);
      $x15 ^= self::rotate($x11 + $x7, 18);
      $x1 ^= self::rotate($x0 + $x3, 7);
      $x2 ^= self::rotate($x1 + $x0, 9);
      $x3 ^= self::rotate($x2 + $x1, 13);
      $x0 ^= self::rotate($x3 + $x2, 18);
      $x6 ^= self::rotate($x5 + $x4, 7);
      $x7 ^= self::rotate($x6 + $x5, 9);
      $x4 ^= self::rotate($x7 + $x6, 13);
      $x5 ^= self::rotate($x4 + $x7, 18);
      $x11 ^= self::rotate($x10 + $x9, 7);
      $x8 ^= self::rotate($x11 + $x10, 9);
      $x9 ^= self::rotate($x8 + $x11, 13);
      $x10 ^= self::rotate($x9 + $x8, 18);
      $x12 ^= self::rotate($x15 + $x14, 7);
      $x13 ^= self::rotate($x12 + $x15, 9);
      $x14 ^= self::rotate($x13 + $x12, 13);
      $x15 ^= self::rotate($x14 + $x13, 18);
    }
    return self::store32_le($x0) . self::store32_le($x5) . self::store32_le($x10) . self::store32_le($x15) . self::store32_le($x6) . self::store32_le($x7) . self::store32_le($x8) . self::store32_le($x9);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ParagonIE_Sodium_Core_HSalsa20::hsalsa20 public static function Calculate an hsalsa20 hash of a single block
ParagonIE_Sodium_Core_Salsa20::core_salsa20 public static function Calculate an salsa20 hash of a single block
ParagonIE_Sodium_Core_Salsa20::rotate public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core_Salsa20::ROUNDS constant
ParagonIE_Sodium_Core_Salsa20::salsa20 public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core_Salsa20::salsa20_xor public static function @internal You should not use this directly from another application
ParagonIE_Sodium_Core_Salsa20::salsa20_xor_ic public static function @internal You should not use this directly from another application
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.