Augusto Hack

Results 91 comments of Augusto Hack

This is similar to https://github.com/gopasspw/gopass/issues/1917#issuecomment-831827408 , here the [field 7](https://github.com/gpg/gnupg/blob/master/doc/DETAILS#field-7---expiration-date) should do the trick

Thanks for maintaining the crate! Maybe a comment could be added the original issue text? Unless someone reads the whole discussion it looks like the crate is unmaintained

The motivation for the issue was the usage of `mtree_verify` in miden-base. There are two uses and having an error will make it clearer which one caused an issue (also...

It would be nice to have both variants for little and big endian encodings, and maybe also zig-zag encoding.

If there is any interest, this is the big-ending version w/ overflow handling that I'm using: ```rust #[inline] pub fn be_varint_u64(mut i: I) -> IResult where I: Slice + InputIter...

That is the proposal, this is only walking up the tree and checking the hash of the subtrees (i.e. only checking a merkle path), so the complexity here is `O(n)`...

One possible design is to have the target position of the element on stack and the Merkle tree root: ``` Stack: [el_pos, tree_root ...] ``` And the decorator would push...

> correct position will be quite complicating, I think It should be easy: ```rust container.inner_nodes().filter(|n| n.is_leaf()).nth(index) ``` The complexity is basically `O(n)` where `n` is the number of leaves. >...

thiserror doesn't support no-std

Updated the error message and implementation, after changes it looks like this: ``` wgpu error: Validation Error Caused by: In Device::create_bind_group_layout Too many bindings of type StorageBuffers in Stage ShaderStages(VERTEX...