-
blake3.h has this paragraph of defines:
` #define BLAKE3_KEY_LEN 32
#define BLAKE3_OUT_LEN 32
#define BLAKE3_BLOCK_LEN 64
#define BLAKE3_CHUNK_LEN 1024
#define BLAKE3…
-
If I try to install the blake3 npm package with `npm i blake3`, I just get this error message:
```
npm ERR! code ETARGET
npm ERR! notarget No matching version found for blake3-wasm@2.1.7.
npm ERR!…
-
Would be great if the hash function was configurable so we could play around with different mechanisms, like blake3: https://github.com/BLAKE3-team/BLAKE3
-
From my reading of Blake3 paper, and my understanding of Merkle trees in general, I think this should be doable in theory: if I have Blake3 digests of parts of a file, I should be able to calculate th…
-
I am not a cryptography expert but I have asked the same question on whether we can change Chacha20-poly1305 to use Blake3. It seems that you have come up with a way to do this. I read your comments o…
-
Iddo: blake3-224 or standard blake3-256 or blake2-224, note that blake3 is faster in large part because of reduced rounds (other than that it has better parallelism), we won't make final decision yet,…
avive updated
4 years ago
-
In one of my projects, I have a subdirectory that refers to its parent directory with `path = ".."` when building locally. The [relevant line of `Cargo.toml`](https://github.com/BLAKE3-team/BLAKE3/blo…
-
## Background
We need to store these values on chain for each deal.
It's easy enough to store these as strings but not gas efficient.
CIDs can vary in size, but we can maybe enforce a fixed l…
-
```
blake3.c:161:48: error: implicit conversion loses integer precision: 'unsigned long long' to 'size_t' (aka 'unsigned int') [-Werror,-Wshorten-64-to-32]
return round_down_to_power_of_2(full_chu…
-
BLAKE2 is a cryptographic hash function faster than MD5, SHA-1, SHA-2, and SHA-3.

Mor…