Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/app/blog/hashing-multiple-blobs-with-BLAKE3/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {ThemeImage} from '@/components/ThemeImage'
export const post = {
draft: false,
author: 'Rüdiger Klaehn',
date: '2025-10-20',
date: '2025-10-15',
title: 'Hashing multiple blobs with BLAKE3',
description:
"How to quickly hash multiple small blobs with BLAKE3",
Expand Down Expand Up @@ -129,6 +129,8 @@ The hazmat API gives you the ability to use the `Hasher` to compute the intermed

But the API still focuses around the `Hasher`, so it still works only for computing data for *individual* blobs.

<Note>We have written about the [new hazmat API](https://www.iroh.computer/blog/blake3-hazmat-api) previously</Note>

## Using the internal platform API

So it looks like we have no choice but to dig deeper and see if we can implement this using existing internals.
Expand Down
Loading