Server IP : 184.154.167.98 / Your IP : 3.142.131.51 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/tampico1900/3rdparty/aws/aws-sdk-php/src/ |
Upload File : |
<?php namespace Aws; /** * Interface that allows implementing various incremental hashes. */ interface HashInterface { /** * Adds data to the hash. * * @param string $data Data to add to the hash */ public function update($data); /** * Finalizes the incremental hash and returns the resulting digest. * * @return string */ public function complete(); /** * Removes all data from the hash, effectively starting a new hash. */ public function reset(); }