From 786ff15fb153a8164d116af128a9b6f6ffed2645 Mon Sep 17 00:00:00 2001 From: Kamen Mladenov Date: Wed, 9 Apr 2025 16:02:03 +0300 Subject: feat(guests): Add SHA2 program Simple program which tests the SHA256 hashing algorithm --- guests/sha2/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 guests/sha2/Cargo.toml (limited to 'guests/sha2/Cargo.toml') diff --git a/guests/sha2/Cargo.toml b/guests/sha2/Cargo.toml new file mode 100644 index 0000000..353a13b --- /dev/null +++ b/guests/sha2/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "sha2" +version = "0.1.0" +edition = "2021" + +[dependencies] +guests_macro = { version = "0.1.0", path = "../../guests_macro" } +sha2 = { version = "0.10.8", default-features = false } + +[features] +no_std = [] +jolt = [] +nexus = [] +risc0 = [] +sp1 = [] +zkm = [] +zkwasm = [] -- cgit v1.2.3