-
Currently we only support the one-shot API.
-
It looks like functions like `blake2b_param_set_node_offset` convert their argument to little-endian on the way in. But those functions aren't exposed in the `blake2.h` API. Is the expectation that ca…
-
JSDoc in question:
```js
/**
* [BLAKE2b] hash algorithm implemented in WebAssembly.
*
* ```js
* const message = new TextEncoder().encode("hello")
* new Blake2b(32)
* .update(message)
…
-
Apparently BLAKE2 includes parallel versions of the two hash functions to take advantage of multi-core:
https://github.com/BLAKE2/BLAKE2/blob/master/sse/blake2sp.c
It would be nice to have these…
-
I'm helping some folks with some crypto heavy code and this change would make our lives much easier. If I helped get this sorted, would it be possible to turn around a release with that hange pretty …
-
I'm getting the following compiler error when compiling with gcc 7 or 8.
```
$ make -C src/protocol
make: Entering directory '/tmp/noise-tmp/src/protocol'
depbase=`echo ../crypto/blake2/blake2s.…
-
| | |
| --- | --- |
| Bugzilla Link | [46571](https://llvm.org/bz46571) |
| Version | 8.0 |
| OS | Linux |
| CC | @DougGregor,@noloader,@zygoloid |
## Extended Description
I'm working with a proje…
-
> BLAKE2 is a cryptographic hash function faster than MD5, SHA-1, SHA-2, and SHA-3, yet is at least as secure as the latest standard SHA-3. BLAKE2 has been adopted by many projects due to its high spe…
-
E.g. https://www.blake2.net (reduced rounds), https://github.com/BLAKE3-team/BLAKE3
-
Blake3 (https://github.com/BLAKE3-team/BLAKE3) was announced in January 2020 at Real World Crypto, and claims to be ~5x faster than Blake2b.
Would Blake3 be appropriate to replace Blake2 in SEAL? O…