??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/orkenoil.kz/wp-includes/sodium_compat/src/Core32/Poly1305.php
⬅ Kembali
<?php
if (class_exists('ParagonIE_Sodium_Core32_Poly1305', false)) {
return;
}
/**
* Class ParagonIE_Sodium_Core32_Poly1305
*/
abstract class ParagonIE_Sodium_Core32_Poly1305 extends ParagonIE_Sodium_Core32_Util
{
const BLOCK_SIZE = 16;
/**
* @internal You should not use this directly from another application
*
* @param string $m
* @param string $key
* @return string
* @throws SodiumException
* @throws TypeError
*/
public static function onetimeauth($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)
);
return $state
->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);
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 ChaCha20
dir
—
2026-06-24 21:33
📁 Curve25519
dir
—
2026-06-24 21:14
📁 Poly1305
dir
—
2026-06-24 22:15
📁 SecretStream
dir
—
2019-12-09 15:42
🐘 BLAKE2b.php
php
21.8 KB
2021-05-25 12:55
🐘 ChaCha20.php
php
14.2 KB
2019-03-21 03:56
🐘 Curve25519.php
php
129.9 KB
2022-03-24 14:20
🐘 Ed25519.php
php
15.4 KB
2022-09-13 23:13
🐘 HChaCha20.php
php
5.2 KB
2019-03-21 03:56
🐘 HSalsa20.php
php
6.8 KB
2019-03-21 03:56
🐘 Int32.php
php
24 KB
2022-03-24 14:20
🐘 Int64.php
php
30.4 KB
2022-03-24 14:20
🐘 Poly1305.php
php
1.5 KB
2019-03-21 03:56
🐘 Salsa20.php
php
11.2 KB
2019-03-21 03:56
🐘 SipHash.php
php
6.5 KB
2019-03-21 03:56
🐘 Util.php
php
209 B
2019-03-21 03:56
🐘 X25519.php
php
10.8 KB
2019-12-09 15:42
🐘 XChaCha20.php
php
2.4 KB
2022-03-24 14:20
🐘 XSalsa20.php
php
1.3 KB
2019-03-21 03:56
📄 error_log
file
8.2 KB
2026-06-25 14:07