We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b79b5 commit 49e1eb4Copy full SHA for 49e1eb4
guest-libs/sha2/src/lib.rs
@@ -74,7 +74,7 @@ pub fn set_sha384(input: &[u8], output: &mut [u8; 48]) {
74
}
75
#[cfg(target_os = "zkvm")]
76
{
77
- let output_64: [u8; 64] = [0; 64];
+ let mut output_64: [u8; 64] = [0; 64];
78
openvm_sha2_guest::zkvm_sha384_impl(
79
input.as_ptr(),
80
input.len(),
0 commit comments