-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add Keccak256 syscall and sdk support (#16498) (cherry picked from commit 8eb05d6) # Conflicts: # Cargo.lock # programs/bpf/Cargo.lock # programs/bpf/rust/sha/Cargo.toml # programs/bpf/tests/programs.rs # programs/bpf_loader/Cargo.toml # sdk/program/Cargo.toml # sdk/program/src/lib.rs # sdk/src/feature_set.rs * resolve conflicts Co-authored-by: Jack May <jack@solana.com>
- Loading branch information
1 parent
f91d7da
commit 3303ead
Showing
17 changed files
with
368 additions
and
74 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ fn main() { | |
"rand", | ||
"ro_modify", | ||
"sanity", | ||
"sha256", | ||
"sha", | ||
"spoof1", | ||
"spoof1_system", | ||
"sysvar", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/** | ||
* @brief SHA256 Syscall test | ||
*/ | ||
#include <solana_sdk.h> | ||
|
||
extern uint64_t entrypoint(const uint8_t *input) { | ||
|
||
// SHA256 | ||
{ | ||
uint8_t result[SHA256_RESULT_LENGTH]; | ||
uint8_t expected[] = {0x9f, 0xa2, 0x7e, 0x8f, 0x7b, 0xc1, 0xec, 0xe8, | ||
0xae, 0x7b, 0x9a, 0x91, 0x46, 0x53, 0x20, 0xf, | ||
0x1c, 0x22, 0x8e, 0x56, 0x10, 0x30, 0x59, 0xfd, | ||
0x35, 0x8d, 0x57, 0x54, 0x96, 0x47, 0x2c, 0xc9}; | ||
|
||
uint8_t bytes1[] = {'G', 'a', 'g', 'g', 'a', 'b', 'l', 'a', | ||
'g', 'h', 'b', 'l', 'a', 'g', 'h', '!'}; | ||
uint8_t bytes2[] = {'f', 'l', 'u', 'r', 'b', 'o', 's'}; | ||
const SolBytes bytes[] = {{bytes1, SOL_ARRAY_SIZE(bytes1)}, | ||
{bytes2, SOL_ARRAY_SIZE(bytes2)}}; | ||
|
||
sol_sha256(bytes, SOL_ARRAY_SIZE(bytes), result); | ||
|
||
sol_assert(0 == sol_memcmp(result, expected, SHA256_RESULT_LENGTH)); | ||
} | ||
|
||
// Keccak | ||
{ | ||
uint8_t result[KECCAK_RESULT_LENGTH]; | ||
uint8_t expected[] = {0xd1, 0x9a, 0x9d, 0xe2, 0x89, 0x7f, 0x7c, 0x9e, | ||
0x5, 0x32, 0x32, 0x22, 0xe8, 0xc6, 0xb4, 0x88, | ||
0x6b, 0x5b, 0xbb, 0xec, 0xd4, 0x42, 0xfd, 0x10, | ||
0x7d, 0xd5, 0x9a, 0x6f, 0x21, 0xd3, 0xb8, 0xa7}; | ||
|
||
uint8_t bytes1[] = {'G', 'a', 'g', 'g', 'a', 'b', 'l', 'a', | ||
'g', 'h', 'b', 'l', 'a', 'g', 'h', '!'}; | ||
uint8_t bytes2[] = {'f', 'l', 'u', 'r', 'b', 'o', 's'}; | ||
const SolBytes bytes[] = {{bytes1, SOL_ARRAY_SIZE(bytes1)}, | ||
{bytes2, SOL_ARRAY_SIZE(bytes2)}}; | ||
|
||
sol_keccak256(bytes, SOL_ARRAY_SIZE(bytes), result); | ||
|
||
sol_assert(0 == sol_memcmp(result, expected, KECCAK_RESULT_LENGTH)); | ||
} | ||
|
||
return SUCCESS; | ||
} |
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
programs/bpf/rust/sha256/Cargo.toml → programs/bpf/rust/sha/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
//! @brief SHA Syscall test | ||
extern crate solana_program; | ||
use solana_program::{custom_panic_default, msg}; | ||
|
||
fn test_sha256_hasher() { | ||
use solana_program::hash::{hashv, Hasher}; | ||
let vals = &["Gaggablaghblagh!".as_ref(), "flurbos".as_ref()]; | ||
let mut hasher = Hasher::default(); | ||
hasher.hashv(vals); | ||
assert_eq!(hashv(vals), hasher.result()); | ||
} | ||
|
||
fn test_keccak256_hasher() { | ||
use solana_program::keccak::{hashv, Hasher}; | ||
let vals = &["Gaggablaghblagh!".as_ref(), "flurbos".as_ref()]; | ||
let mut hasher = Hasher::default(); | ||
hasher.hashv(vals); | ||
assert_eq!(hashv(vals), hasher.result()); | ||
} | ||
|
||
#[no_mangle] | ||
pub extern "C" fn entrypoint(_input: *mut u8) -> u64 { | ||
msg!("sha"); | ||
|
||
test_sha256_hasher(); | ||
test_keccak256_hasher(); | ||
|
||
0 | ||
} | ||
|
||
custom_panic_default!(); | ||
|
||
#[cfg(test)] | ||
mod test { | ||
use super::*; | ||
|
||
#[test] | ||
fn test_sha() { | ||
test_sha256_hasher(); | ||
test_keccak256_hasher(); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.