Tony Arcieri

Results 2560 comments of Tony Arcieri

Unfortunately I wasn't able to find where I saw that. Perhaps it can be found with GitHub Code Search

Could go either way on that. Maybe start here and we can factor it out if it makes sense.

We've merged #1154 and published a `pkcs12` crate, so I'd say we can close this.

Seems like the question here is answered?

The implementation is indeed naive/broken. I thought we had an open tracking issue for this, but apparently not. I'm not sure the best way to handle this, especially given the...

I'd probably suggest against making network connections from a build script, especially in any security-related package (indeed there are renewed efforts underway to run build scripts under WASM). However, I...

Perhaps it could try to query OS facilities to find the table, and if it can't, fall back on an internal table.

Seems like you already filed an issue :wink: Yeah, we do something like this in the `ssh-encoding` crate: https://docs.rs/ssh-encoding/latest/ssh_encoding/trait.Decode.html I'm generally supportive of it, although it'd be a pretty big...

I don't understand what the problem is. Can you explain which error types are incompatible in this case? Did you use the same approach as `ssh-encoding` where the associated error...

So, this line? ```rust let a = baz.der_cmp(bar)?; ``` But if there's a `From` bound on `::Error`, that should take care of it.