/home/desid573/verdenaturopathy.com.au/site3/wp-includes/sodium_compat/src/Core
NameSizeModeActions
AEGIS/-0777rm
AES/-0777rm
Base64/-0777rm
ChaCha20/-0777rm
Curve25519/-0755rm
Poly1305/-0777rm
SecretStream/-0777rm
AEGIS128L.php36680644editdlrm
AEGIS256.php35980644editdlrm
AES.php158850644editdlrm
BLAKE2b.php241920644editdlrm
ChaCha20.php128890644editdlrm
Curve25519.php1436410644editdlrm
Ed25519.php184820644editdlrm
HChaCha20.php41400644editdlrm
HSalsa20.php36730644editdlrm
Poly1305.php15760644editdlrm
Ristretto255.php218840644editdlrm
Salsa20.php82330644editdlrm
SipHash.php82330644editdlrm
Util.php289040644editdlrm
X25519.php84130644editdlrm
XChaCha20.php33200644editdlrm
XSalsa20.php13710644editdlrm
Edit: /home/desid573/verdenaturopathy.com.au/site3/wp-includes/sodium_compat/src/Core/Poly1305.php (1576B)
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); } }