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
#pragma once /** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include struct aws_hmac; namespace Aws { namespace Crt { namespace Crypto { static const size_t SHA256_HMAC_DIGEST_SIZE = 32; /** * Computes a SHA256 HMAC with secret over input, and writes the digest to output. If truncateTo is * non-zero, the digest will be truncated to the value of truncateTo. Returns true on success. If this * function fails, Aws::Crt::LastError() will contain the error that occurred. Unless you're using * 'truncateTo', output should have a minimum capacity of SHA256_HMAC_DIGEST_SIZE. */ bool AWS_CRT_CPP_API ComputeSHA256HMAC( Allocator *allocator, const ByteCursor &secret, const ByteCursor &input, ByteBuf &output, size_t truncateTo = 0) noexcept; /** * Computes a SHA256 HMAC using the default allocator with secret over input, and writes the digest to * output. If truncateTo is non-zero, the digest will be truncated to the value of truncateTo. Returns true * on success. If this function fails, Aws::Crt::LastError() will contain the error that occurred. Unless * you're using 'truncateTo', output should have a minimum capacity of SHA256_HMAC_DIGEST_SIZE. */ bool AWS_CRT_CPP_API ComputeSHA256HMAC( const ByteCursor &secret, const ByteCursor &input, ByteBuf &output, size_t truncateTo = 0) noexcept; /** * Streaming HMAC object. The typical use case is for computing the HMAC of an object that is too large to * load into memory. You can call Update() multiple times as you load chunks of data into memory. When * you're finished simply call Digest(). After Digest() is called, this object is no longer usable. */ class AWS_CRT_CPP_API HMAC final { public: ~HMAC(); HMAC(const HMAC &) = delete; HMAC &operator=(const HMAC &) = delete; HMAC(HMAC &&toMove); HMAC &operator=(HMAC &&toMove); /** * Returns true if the instance is in a valid state, false otherwise. */ inline operator bool() const noexcept { return m_good; } /** * Returns the value of the last aws error encountered by operations on this instance. */ inline int LastError() const noexcept { return m_lastError; } /** * Creates an instance of a Streaming SHA256 HMAC. */ static HMAC CreateSHA256HMAC(Allocator *allocator, const ByteCursor &secret) noexcept; /** * Creates an instance of a Streaming SHA256 HMAC using the Default Allocator. */ static HMAC CreateSHA256HMAC(const ByteCursor &secret) noexcept; /** * Updates the running HMAC object with data in toHMAC. Returns true on success. Call * LastError() for the reason this call failed. */ bool Update(const ByteCursor &toHMAC) noexcept; /** * Finishes the running HMAC operation and writes the digest into output. The available capacity of * output must be large enough for the digest. See: SHA256_DIGEST_SIZE and MD5_DIGEST_SIZE for size * hints. 'truncateTo' is for if you want truncated output (e.g. you only want the first 16 bytes of a * SHA256 digest. Returns true on success. Call LastError() for the reason this call failed. */ bool Digest(ByteBuf &output, size_t truncateTo = 0) noexcept; /** * Returns the size of the digest for this hmac algorithm. If this object is not valid, it will * return 0 instead. */ size_t DigestSize() const noexcept; /** * Computes the running HMAC and finishes the running HMAC operation and writes the digest into output. * The available capacity of output must be large enough for the digest. * See: SHA256_DIGEST_SIZE and MD5_DIGEST_SIZE for size * hints. 'truncateTo' is for if you want truncated output (e.g. you only want the first 16 bytes of a * SHA256 HMAC digest. Returns true on success. Call LastError() for the reason this call failed. * * This is an API a user would use for smaller size inputs. For larger, streaming inputs, use * multiple calls to Update() for each buffer, followed by a single call to Digest(). */ bool ComputeOneShot(const ByteCursor &input, ByteBuf &output, size_t truncateTo = 0) noexcept; private: HMAC(aws_hmac *hmac) noexcept; HMAC() = delete; aws_hmac *m_hmac; bool m_good; int m_lastError; }; /** * BYO_CRYPTO: Base class for custom HMAC implementations. * * If using BYO_CRYPTO, you must define concrete implementations for the required HMAC algorithms * and set their creation callbacks via functions like ApiHandle.SetBYOCryptoNewSHA256HMACCallback(). */ class AWS_CRT_CPP_API ByoHMAC { public: virtual ~ByoHMAC() = default; /** @private * this is called by the framework. If you're trying to create instances of this class manually, * please don't. But if you do. Look at the other factory functions for reference. */ aws_hmac *SeatForCInterop(const std::shared_ptr &selfRef); protected: ByoHMAC(size_t digestSize, const ByteCursor &secret, Allocator *allocator = ApiAllocator()); /** * Updates the running HMAC with to_hash. * This can be called multiple times. * Raise an AWS error and return false to indicate failure. */ virtual bool UpdateInternal(const ByteCursor &toHash) noexcept = 0; /** * Complete the HMAC computation and write the final digest to output. * This cannot be called more than once. * If truncate_to is something other than 0, the output must be truncated to that number of bytes. * Raise an AWS error and return false to indicate failure. */ virtual bool DigestInternal(ByteBuf &output, size_t truncateTo = 0) noexcept = 0; private: static void s_Destroy(struct aws_hmac *hmac); static int s_Update(struct aws_hmac *hmac, const struct aws_byte_cursor *buf); static int s_Finalize(struct aws_hmac *hmac, struct aws_byte_buf *out); static aws_hmac_vtable s_Vtable; aws_hmac m_hmacValue; std::shared_ptr m_selfReference; }; using CreateHMACCallback = std::function(size_t digestSize, const ByteCursor &secret, Allocator *)>; } // namespace Crypto } // namespace Crt } // namespace Aws