forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add zk_token_sdk_enabled feature to gate Zk Token proof program and `…
…sol_zk_token_elgamal_op` syscalls
- Loading branch information
Showing
17 changed files
with
482 additions
and
15 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
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,20 @@ | ||
[package] | ||
name = "solana-bpf-rust-zk_token_elgamal" | ||
version = "1.10.0" | ||
description = "Solana BPF test program written in Rust" | ||
authors = ["Solana Maintainers <[email protected]>"] | ||
repository = "https://github.com/solana-labs/solana" | ||
license = "Apache-2.0" | ||
homepage = "https://solana.com/" | ||
documentation = "https://docs.rs/solana-bpf-rust-zktoken_crypto" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
solana-program = { path = "../../../../sdk/program", version = "=1.10.0" } | ||
solana-zk-token-sdk = { path = "../../../../zk-token-sdk", version = "=1.10.0" } | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] |
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,53 @@ | ||
//! @brief zk_token_elgamal syscall tests | ||
extern crate solana_program; | ||
use { | ||
solana_program::{custom_panic_default, msg}, | ||
solana_zk_token_sdk::zk_token_elgamal::{ | ||
ops, | ||
pod::{ElGamalCiphertext, Zeroable}, | ||
}, | ||
}; | ||
|
||
#[no_mangle] | ||
pub extern "C" fn entrypoint(_input: *mut u8) -> u64 { | ||
let zero = ElGamalCiphertext::zeroed(); | ||
|
||
msg!("add_to"); | ||
let one = ops::add_to(&zero, 1).expect("add_to"); | ||
|
||
msg!("subtract_from"); | ||
assert_eq!(zero, ops::subtract_from(&one, 1).expect("subtract_from")); | ||
|
||
msg!("add"); | ||
assert_eq!(one, ops::add(&zero, &one).expect("add")); | ||
|
||
msg!("subtract"); | ||
assert_eq!(zero, ops::subtract(&one, &one).expect("subtract")); | ||
|
||
msg!("add_with_lo_hi"); | ||
assert_eq!( | ||
one, | ||
ops::add_with_lo_hi( | ||
&one, | ||
&ElGamalCiphertext::zeroed(), | ||
&ElGamalCiphertext::zeroed() | ||
) | ||
.expect("add_with_lo_hi") | ||
); | ||
|
||
msg!("subtract_with_lo_hi"); | ||
assert_eq!( | ||
one, | ||
ops::subtract_with_lo_hi( | ||
&one, | ||
&ElGamalCiphertext::zeroed(), | ||
&ElGamalCiphertext::zeroed() | ||
) | ||
.expect("subtract_with_lo_hi") | ||
); | ||
|
||
0 | ||
} | ||
|
||
custom_panic_default!(); |
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.