/home/altere25/berryglowbeauty.com/wp-includes/sodium_compat/src/Core
NameSizeModeActions
Base64/-0755rm
ChaCha20/-0755rm
Curve25519/-0755rm
Poly1305/-0755rm
SecretStream/-0755rm
BLAKE2b.php238920644editdlrm
ChaCha20.php129340644editdlrm
Curve25519.php1054580644editdlrm
Ed25519.php155590644editdlrm
HChaCha20.php38710644editdlrm
HSalsa20.php36730644editdlrm
Poly1305.php15740644editdlrm
Salsa20.php82330644editdlrm
SipHash.php80260644editdlrm
Util.php274290644editdlrm
X25519.php94500644editdlrm
XChaCha20.php33700644editdlrm
XSalsa20.php13710644editdlrm
Edit: /home/altere25/berryglowbeauty.com/wp-includes/sodium_compat/src/Core/Poly1305.php (1574B)
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_Core_Poly1305_State( self::substr($key, 0, 32) ); $calc = $state ->update($m) ->finish(); return self::verify_16($calc, $mac); } }