benma

Results 433 comments of benma

I agree, the config resolution should not be based on the current working directory, but starting at the project (where Cargo.toml is, i.e. `manifest-path`).

Good to know, thanks! If it is gonna end up in x/crypto, please consider merging #16 and #17 (esp. the latter). If there is a permission/licensing issue, feel free to...

This seems to be working: ``` Go func Add(p, q *edwards25519.ExtendedGroupElement) *edwards25519.ExtendedGroupElement { var r edwards25519.CompletedGroupElement var qCached edwards25519.CachedGroupElement q.ToCached(&qCached) edwards25519.GeAdd(&r, p, &qCached) var result edwards25519.ExtendedGroupElement r.ToExtended(&result) edwards25519.FeNeg(&result.X, &result.X) return...

@karalabe I also had to work around the library appending a report ID on windows only. I understand that you do it for windows only as on unix, the signal11...

> Webpack can bundle things into different .js files depending on how your code is structured, and then lazy load them. If Gopher produced modular code, the browser could just...

@nevkontakte thanks a lot! Using js.Module was necessary to make it work (we also had to upgrade from webpack 4 to webpack 5). Cheers!

I think the secrets module might also leave unwanted copies on the stack which are not zeroed, e.g. these: https://github.com/dalek-cryptography/ed25519-dalek/blob/925eb9ea56192053c9eb93b9d30d1b9419eee128/src/secret.rs#L267-L269 Or this: https://github.com/dalek-cryptography/ed25519-dalek/blob/925eb9ea56192053c9eb93b9d30d1b9419eee128/src/public.rs#L73

> unfortunately no. after 5 years of trying to do rust on embedded we have decided that it's not the right tool @nickray could you please elaborate a bit on...