Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement hashing I/O streams #5

Merged
merged 2 commits into from
Jun 23, 2024
Merged

Implement hashing I/O streams #5

merged 2 commits into from
Jun 23, 2024

Conversation

thekid
Copy link
Member

@thekid thekid commented Jun 23, 2024

Example:

use text\hash\HashingOutStream;

$out= new HashingOutputStream('md5', new FileOutputStream('test.txt'));
$out->write('Test');
$out->close();

$md5= $out->digest()->hex(); // md5("Test")

See also xp-forge/web#118 and https://www.javadoc.io/doc/com.google.guava/guava/latest/com/google/common/hash/package-summary.html

@thekid thekid added the enhancement New feature or request label Jun 23, 2024
@thekid thekid merged commit 31ef485 into master Jun 23, 2024
20 checks passed
@thekid thekid deleted the feature/io-streams branch June 23, 2024 19:25
@thekid
Copy link
Member Author

thekid commented Jun 23, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant