1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
// shake.h - written and placed in the public domain by Jeffrey Walton /// \file shake.h /// \brief Classes for SHAKE message digests /// \details The library provides byte oriented SHAKE128 and SHAKE256 using F1600. /// FIPS 202 allows nearly unlimited output sizes, but Crypto++ limits the output /// size to UINT_MAX due underlying data types. /// \sa Keccak, SHA3, SHAKE128, SHAKE256, /// FIPS 202, /// SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions /// \since Crypto++ 8.1 #ifndef CRYPTOPP_SHAKE_H #define CRYPTOPP_SHAKE_H #include "cryptlib.h" #include "secblock.h" NAMESPACE_BEGIN(CryptoPP) /// \brief SHAKE message digest base class /// \details SHAKE is the base class for SHAKE128 and SHAKE258. /// Library users should instantiate a derived class, and only use SHAKE /// as a base class reference or pointer. /// \sa Keccak, SHA3, SHAKE128, SHAKE256, /// FIPS 202, /// SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions /// \since Crypto++ 8.1 class SHAKE : public HashTransformation { protected: /// \brief Construct a SHAKE /// \param digestSize the digest size, in bytes /// \details SHAKE is the base class for SHAKE128 and SHAKE256. /// Library users should instantiate a derived class, and only use SHAKE /// as a base class reference or pointer. /// \details This constructor was moved to protected at Crypto++ 8.1 /// because users were attempting to create Keccak objects with it. /// \since Crypto++ 8.1 SHAKE(unsigned int digestSize) : m_digestSize(digestSize) {Restart();} public: unsigned int DigestSize() const {return m_digestSize;} unsigned int OptimalDataAlignment() const {return GetAlignmentOf();} void Update(const byte *input, size_t length); void Restart(); void TruncatedFinal(byte *hash, size_t size); protected: inline unsigned int r() const {return BlockSize();} // SHAKE-128 and SHAKE-256 effectively allow unlimited // output length. However, we use an unsigned int so // we are limited in practice to UINT_MAX. void ThrowIfInvalidTruncatedSize(size_t size) const; FixedSizeSecBlock m_state; unsigned int m_digestSize, m_counter; }; /// \brief SHAKE message digest template /// \tparam T_Strength the strength of the digest /// \since Crypto++ 8.1 template class SHAKE_Final : public SHAKE { public: CRYPTOPP_CONSTANT(DIGESTSIZE = (T_Strength == 128 ? 32 : 64)); CRYPTOPP_CONSTANT(BLOCKSIZE = (T_Strength == 128 ? 1344/8 : 1088/8)); static std::string StaticAlgorithmName() { return "SHAKE-" + IntToString(T_Strength); } /// \brief Construct a SHAKE-X message digest /// \details SHAKE128 and SHAKE256 don't need the output size in advance /// because the output size does not affect the digest. TruncatedFinal /// produces the correct digest for any output size. However, cSHAKE /// requires the output size in advance because the algorithm uses /// output size as a parameter to the hash function. SHAKE_Final(unsigned int outputSize=DIGESTSIZE) : SHAKE(outputSize) {} /// \brief Provides the block size of the compression function /// \return block size of the compression function, in bytes /// \details BlockSize() will return 0 if the hash is not block based /// or does not have an equivalent block size. For example, Keccak /// and SHA-3 do not have a block size, but they do have an equivalent /// to block size called rate expressed as r. unsigned int BlockSize() const { return BLOCKSIZE; } std::string AlgorithmName() const { return StaticAlgorithmName(); } private: #if !defined(__BORLANDC__) // ensure there was no underflow in the math CRYPTOPP_COMPILE_ASSERT(BLOCKSIZE < 200); #endif }; /// \brief SHAKE128 message digest /// \details The library provides byte oriented SHAKE128 using F1600. /// FIPS 202 allows nearly unlimited output sizes, but Crypto++ limits /// the output size to UINT_MAX due underlying data types. /// \sa Keccak, SHA3, SHAKE256, /// FIPS 202, /// SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions /// \since Crypto++ 8.1 class SHAKE128 : public SHAKE_Final<128> { public: /// \brief Construct a SHAKE128 message digest /// \details SHAKE128 and SHAKE256 don't need the output size in advance /// because the output size does not affect the digest. TruncatedFinal /// produces the correct digest for any output size. However, cSHAKE /// requires the output size in advance because the algorithm uses /// output size as a parameter to the hash function. /// \since Crypto++ 8.1 SHAKE128() {} /// \brief Construct a SHAKE128 message digest /// \details SHAKE128 and SHAKE256 don't need the output size in advance /// because the output size does not affect the digest. TruncatedFinal /// produces the correct digest for any output size. However, cSHAKE /// requires the output size in advance because the algorithm uses /// output size as a parameter to the hash function. /// \since Crypto++ 8.1 SHAKE128(unsigned int outputSize) : SHAKE_Final<128>(outputSize) {} }; /// \brief SHAKE256 message digest /// \details The library provides byte oriented SHAKE256 using F1600. /// FIPS 202 allows nearly unlimited output sizes, but Crypto++ limits /// the output size to UINT_MAX due underlying data types. /// \sa Keccak, SHA3, SHAKE128, /// FIPS 202, /// SHA-3 Standard: Permutation-Based Hash and Extendable-Output Functions /// \since Crypto++ 8.1 class SHAKE256 : public SHAKE_Final<256> { public: /// \brief Construct a SHAKE256 message digest /// \details SHAKE128 and SHAKE256 don't need the output size in advance /// because the output size does not affect the digest. TruncatedFinal /// produces the correct digest for any output size. However, cSHAKE /// requires the output size in advance because the algorithm uses /// output size as a parameter to the hash function. /// \since Crypto++ 8.1 SHAKE256() {} /// \brief Construct a SHAKE256 message digest /// \details SHAKE128 and SHAKE256 don't need the output size in advance /// because the output size does not affect the digest. TruncatedFinal /// produces the correct digest for any output size. However, cSHAKE /// requires the output size in advance because the algorithm uses /// output size as a parameter to the hash function. /// \since Crypto++ 8.1 SHAKE256(unsigned int outputSize) : SHAKE_Final<256>(outputSize) {} }; NAMESPACE_END #endif