??????????????
??????????????
??????????????
??????????????
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/Core/Poly1305.php
⬅ Kembali
<?php
if (class_exists('ParagonIE_Sodium_Core_Poly1305', false)) {
return;
}
/**
* Class ParagonIE_Sodium_Core_Poly1305
*/
abstract class ParagonIE_Sodium_Core_Poly1305 extends ParagonIE_Sodium_Core_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_Core_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_Core_Poly1305_State(
self::substr($key, 0, 32)
);
$calc = $state
->update($m)
->finish();
return self::verify_16($calc, $mac);
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
📁 AEGIS
dir
—
2024-07-18 12:48
📁 AES
dir
—
2026-06-25 00:43
📁 Base64
dir
—
2025-10-06 14:48
📁 ChaCha20
dir
—
2026-06-24 23:14
📁 Curve25519
dir
—
2026-06-24 20:54
📁 Poly1305
dir
—
2026-06-24 20:52
📁 SecretStream
dir
—
2019-12-09 15:42
🐘 AEGIS128L.php
php
3.6 KB
2024-07-18 12:48
🐘 AEGIS256.php
php
3.5 KB
2024-07-18 12:48
🐘 AES.php
php
15.5 KB
2024-07-18 12:48
🐘 BLAKE2b.php
php
23.6 KB
2022-03-24 14:20
🐘 ChaCha20.php
php
12.6 KB
2025-10-06 14:48
🐘 Curve25519.php
php
140.3 KB
2025-10-06 14:48
🐘 Ed25519.php
php
18 KB
2025-12-30 21:55
🐘 HChaCha20.php
php
4 KB
2025-10-06 14:48
🐘 HSalsa20.php
php
3.6 KB
2019-03-21 03:56
🐘 Poly1305.php
php
1.5 KB
2025-10-06 14:48
🐘 Ristretto255.php
php
21.4 KB
2021-05-25 12:55
🐘 Salsa20.php
php
8 KB
2019-03-21 03:56
🐘 SipHash.php
php
8 KB
2021-05-25 12:55
🐘 Util.php
php
28.2 KB
2025-10-06 14:48
🐘 X25519.php
php
8.2 KB
2025-10-06 14:48
🐘 XChaCha20.php
php
3.2 KB
2025-10-06 14:48
🐘 XSalsa20.php
php
1.3 KB
2019-03-21 03:56
📄 error_log
file
9.9 KB
2026-06-25 12:38