(twasm: &[u8])
| 17 | } |
| 18 | |
| 19 | fn argon2id_from_twasm(twasm: &[u8]) -> Result<Module> { |
| 20 | let module = Module::try_from_twasm(twasm)?; |
| 21 | Ok(module) |
| 22 | } |
| 23 | |
| 24 | fn argon2id_run(module: Module) -> Result<()> { |
| 25 | let mut store = Store::default(); |
no outgoing calls
no test coverage detected