HashInterface.php 531 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace Aws;
  3. /**
  4. * Interface that allows implementing various incremental hashes.
  5. */
  6. interface HashInterface
  7. {
  8. /**
  9. * Adds data to the hash.
  10. *
  11. * @param string $data Data to add to the hash
  12. */
  13. public function update($data);
  14. /**
  15. * Finalizes the incremental hash and returns the resulting digest.
  16. *
  17. * @return string
  18. */
  19. public function complete();
  20. /**
  21. * Removes all data from the hash, effectively starting a new hash.
  22. */
  23. public function reset();
  24. }