Jack Grigg
Jack Grigg
https://github.com/rustwasm/wasm-bindgen/issues/2160 is a promising-looking thread.
In my case, https://github.com/Amanieu/parking_lot/issues/269 was the root cause; an errant `cargo update` bumped my `Cargo.lock` to a version of `parking_lot_core` that triggers the problem. The workaround for me was to...
Hi! `zcashd` developer here; I've just been pointed to this issue. Everything that was deployed in NU5 is documented in [ZIP 252](https://zips.z.cash/zip-0252). You should check there to see what changes...
Another place that a canonical decoder mode would be useful is implementing the strict parsing of [RFC 7468](https://www.rfc-editor.org/rfc/rfc7468.html#section-3) PEM-style text encodings. I myself believed that I was correctly implementing the...
`uu_cksum` correctly implements `cksum 8.30`, which only has `--help` and `--version`. However, the [GNU Coreutils 9.0 docs for `cksum`](https://www.gnu.org/software/coreutils/manual/html_node/cksum-invocation.html#cksum-invocation) list the following options: - [x] `-a/--algorithm` - [ ] `--debug`...
Investigating the codebase a bit further, I see that both `md5sum` and `b2sum` are implemented via `hashsum`. This suggests we should make `cksum` also be implemented by `hashsum`. I've checked...
Looks like `test/misc/b2sum` is also failing, both because `hashsum` doesn't support `-l/--length`, and `cksum` doesn't support `-a blake2b`. I'm going to try implementing this.
I made a bunch of progress on this and then ran out of time to finish the PRs. Picking this back up now; I'll rebase my current local work and...
Ugh, this is annoying: `b3sum` was added in https://github.com/uutils/coreutils/pull/3108, and its corresponding [upstream binary](https://github.com/BLAKE3-team/BLAKE3/tree/master/b3sum) defines `-l/--length` in bytes, whereas GNU Coreutils `b2sum` defines `-l/--length` in bits. There are three options...
cc @oconnor663 who wrote `b3sum`