Results 661 comments of Brian Smith

> @briansmith Would you be interested in turning your Surface Pro X collecting dust into a hosted builder for Windows AArch64? I could try it out on my machine and...

In theory you probably could cross-compile if you managed to install a Linux C toolchain that can target Rust, and if you configure cc-rs to use it. However, it is...

I'm happy to get WASI working. I think it is really simple to do now that `wasm32-unknown-unknown` is working. What I'm missing is a recipe for testing it. I would...

I think I'm fine using Lucet or whatever. What I'm hoping for is a small shell script that downloads the necessary thing to run the tests under wasi and then...

I had to switch from Travis CI to GitHub Actions. Please check out how the new GitHub Actions stuff in `.github/workflows/ci.yml` does it, particularly the `test-wasm32` build matrix. However, I...

PR #900 is a start at this. I asked for several changes to that PR.

I would very much appreciate somebody contributing a script that shows me how to run `cargo test` in a popular open-source WASI environment in GitHub Actions. 0. Which WASI runtime...

The old PR #900 was a good start at getting WASI working, but it sat for a long time, and I closed it due to inactivity and because it was...

> do you actually mean CMAC or did you instead mean CBC-MAC (which is used by AES-CCM) ? I meant CTR + CBC-MAC, so we can eventually implement https://tools.ietf.org/html/rfc6655 and...

To add this to _ring_, I think we'd need to: - Implement the CCM AEADs in `src/aead/aes_ccm.rs` using the same API style as AES-GCM and ChaCha20-Poly1305. - Add the NIST...