Erik C
Erik C
> @rjzak I am not using `ring` directly but it is listed as a dependency of few packages `rustls` `sct` `webpki` +1, Did you find a way to get across...
Do you have any updates on this? Were you able to compile it into WASM?
When creating an instance of Cipher, there are so many layers of objects(depending on the features chosen), which hide some `usize`s. But I guess is quite hard to change all...
Yeah, like the `nlen` inside `struct AeadCipher`. I'm currently trying to make the critical parts(how to pack the package) of the protocol with WASM, but they only have `wasm32` which...
I first designed it to construct the `Cipher` object in the host and then pass the bytes to WASM to reconstruct it, since it was passed by bytes, the size...
That's actually the secure part of WASM where it is not allowed to visit arbitrary memory in the host, and the memory it can visit is a chunk of linear...