Files
wasmer/lib/deprecated/runtime-core/doc/old-api/wasmhash.rs

8 lines
160 B
Rust

struct WasmHash {}
impl WasmHash {
fn generate(wasm: &[u8]) -> Self;
fn encode(self) -> String;
fn decode(hex_str: &str) -> Result<Self, Error>;
}