/home/techb158/l2hypotheques.com/wp-includes/sodium_compat/src/Core32
NameSizeModeActions
ChaCha20/-0755rm
Curve25519/-0755rm
Poly1305/-0755rm
SecretStream/-0755rm
BLAKE2b.php223240644editdlrm
ChaCha20.php145110644editdlrm
Curve25519.php1329740644editdlrm
Ed25519.php157350644editdlrm
error_log803360644editdlrm
HChaCha20.php52970644editdlrm
HSalsa20.php69410644editdlrm
Int32.php245800644editdlrm
Int64.php311720644editdlrm
Poly1305.php15860644editdlrm
Salsa20.php115060644editdlrm
SipHash.php66130644editdlrm
Util.php2090644editdlrm
X25519.php110420644editdlrm
XChaCha20.php24540644editdlrm
XSalsa20.php13790644editdlrm
Edit: /home/techb158/l2hypotheques.com/wp-includes/sodium_compat/src/Core32/Poly1305.php (1586B)
update($m) ->finish(); } /** * @internal You should not use this directly from another application * * @param string $mac * @param string $m * @param string $key * @return bool * @throws SodiumException * @throws TypeError */ public static function onetimeauth_verify($mac, $m, $key) { if (self::strlen($key) < 32) { throw new InvalidArgumentException( 'Key must be 32 bytes long.' ); } $state = new ParagonIE_Sodium_Core32_Poly1305_State( self::substr($key, 0, 32) ); $calc = $state ->update($m) ->finish(); return self::verify_16($calc, $mac); } }