Searched refs:quarterRound (Results 1 – 2 of 2) sorted by relevance
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/ |
D | Salsa20.php | 430 protected static function quarterRound(&$a, &$b, &$c, &$d) function in phpseclib3\\Crypt\\Salsa20 461 static::quarterRound($x0, $x4, $x8, $x12); 462 static::quarterRound($x5, $x9, $x13, $x1); 463 static::quarterRound($x10, $x14, $x2, $x6); 464 static::quarterRound($x15, $x3, $x7, $x11); 466 static::quarterRound($x0, $x1, $x2, $x3); 467 static::quarterRound($x5, $x6, $x7, $x4); 468 static::quarterRound($x10, $x11, $x8, $x9); 469 static::quarterRound($x15, $x12, $x13, $x14);
|
D | ChaCha20.php | 276 protected static function quarterRound(&$a, &$b, &$c, &$d) function in phpseclib3\\Crypt\\ChaCha20 312 static::quarterRound($x0, $x4, $x8, $x12); 313 static::quarterRound($x1, $x5, $x9, $x13); 314 static::quarterRound($x2, $x6, $x10, $x14); 315 static::quarterRound($x3, $x7, $x11, $x15); 317 static::quarterRound($x0, $x5, $x10, $x15); 318 static::quarterRound($x1, $x6, $x11, $x12); 319 static::quarterRound($x2, $x7, $x8, $x13); 320 static::quarterRound($x3, $x4, $x9, $x14);
|