feat: use Risc0 backend in keccak implementation

This commit is contained in:
agureev 2026-06-19 20:08:32 +04:00
parent f39cc8b2a3
commit 16ac194828

View File

@ -71,6 +71,8 @@ impl Keccak {
return f.call_once::<aarch64_sha3::Backend>()
} else if #[cfg(keccak_backend = "soft")] {
return f.call_once::<soft::Backend>()
} else if #[cfg(target_os = "zkvm")] {
return f.call_once::<risc0::Backend>()
}
);