Home
last modified time | relevance | path

Searched refs:quarterRound (Results 1 – 2 of 2) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DSalsa20.php432 protected static function quarterRound(&$a, &$b, &$c, &$d) function in phpseclib3\\Crypt\\Salsa20
463 static::quarterRound($x0, $x4, $x8, $x12);
464 static::quarterRound($x5, $x9, $x13, $x1);
465 static::quarterRound($x10, $x14, $x2, $x6);
466 static::quarterRound($x15, $x3, $x7, $x11);
468 static::quarterRound($x0, $x1, $x2, $x3);
469 static::quarterRound($x5, $x6, $x7, $x4);
470 static::quarterRound($x10, $x11, $x8, $x9);
471 static::quarterRound($x15, $x12, $x13, $x14);
H A DChaCha20.php281 protected static function quarterRound(&$a, &$b, &$c, &$d) function in phpseclib3\\Crypt\\ChaCha20
317 static::quarterRound($x0, $x4, $x8, $x12);
318 static::quarterRound($x1, $x5, $x9, $x13);
319 static::quarterRound($x2, $x6, $x10, $x14);
320 static::quarterRound($x3, $x7, $x11, $x15);
322 static::quarterRound($x0, $x5, $x10, $x15);
323 static::quarterRound($x1, $x6, $x11, $x12);
324 static::quarterRound($x2, $x7, $x8, $x13);
325 static::quarterRound($x3, $x4, $x9, $x14);