mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-07 13:18:20 +00:00
8 lines
160 B
Rust
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>;
|
|
}
|