mirror of
https://github.com/privacy-scaling-explorations/emp-wasm.git
synced 2026-01-09 18:17:55 -05:00
17 lines
766 B
Markdown
17 lines
766 B
Markdown
# emp-wasm
|
|
|
|
Work in progress compiling authenticated garbling from [emp-toolkit/emp-ag2pc](https://github.com/emp-toolkit/emp-ag2pc) to wasm.
|
|
|
|
Currently this is just a stripped down version that you can compile with a single clang++ command (see `build.sh`).
|
|
|
|
# Uncertain Changes
|
|
|
|
For most of the changes I'm reasonably confident that I preserved behavior, but there some things I'm less confident about:
|
|
|
|
- send and recv swapped for bob in `Fpre::generate` (see TODO comment)
|
|
- after removing threading, I also moved everything to a single io channel
|
|
- rewrite of simd code to not use simd and updated aes usage written by chatgpt o1 preview
|
|
- used chatgpt o1 preview to migrate from openssl to mbedtls
|
|
|
|
Regardless, this version of emp-toolkit needs some checking.
|