Add extraction of shielded outputs

This commit is contained in:
Rene Vergara 2023-09-27 10:37:53 -05:00
parent c4799c3558
commit 489d3d632f
Signed by: pitmutt
GPG Key ID: 65122AD495A7F5B2
4 changed files with 30 additions and 44 deletions

View File

@ -349,7 +349,7 @@ pub extern "C" fn rust_wrapper_ufvk_decode(
}
#[no_mangle]
pub extern "C" fn rust_wrapper_sapling_note_decrypt(
pub extern "C" fn rust_wrapper_sapling_note_decrypt_v2(
key: *const u8,
key_len: usize,
note: *const u8,
@ -364,12 +364,10 @@ pub extern "C" fn rust_wrapper_sapling_note_decrypt(
match svk {
Ok(k) => {
let domain = SaplingDomain::for_height(MainNetwork, BlockHeight::from_u32(2000000));
let action2: Transaction = Transaction::read(&mut note_reader, Nu5).unwrap();
let bundle = action2.sapling_bundle().unwrap();
let sh_out = bundle.shielded_outputs();
let action2 = OutputDescription::read(&mut note_reader).unwrap();
let fvk = k.to_diversifiable_full_viewing_key().to_ivk(SaplingScope::External);
let pivk = SaplingPreparedIncomingViewingKey::new(&fvk);
let result = zcash_note_encryption::try_note_decryption(&domain, &pivk, &sh_out[0]);
let result = zcash_note_encryption::try_note_decryption(&domain, &pivk, &action2);
match result {
Some((n, r, m)) => {
let hn = Hnote {note: n.value().inner(), recipient: r.to_bytes().to_vec(), memo: m.as_slice().to_vec() };
@ -447,41 +445,15 @@ pub extern "C" fn rust_wrapper_tx_parse(
let parsed_tx = Transaction::read(&mut tx_reader, Nu5);
match parsed_tx {
Ok(t) => {
let s_bundle = t.sapling_bundle();
let o_bundle = t.orchard_bundle();
match s_bundle {
Some(sb) => {
let s_o = true;
match o_bundle {
Some(ob) => {
let o_a = true;
let x = HrawTx { bytes: tx_bytes, s: s_o, o: o_a};
marshall_to_haskell_var(&x, out, out_len, RW);
},
None => {
let o_a = false;
let x = HrawTx { bytes: tx_bytes, s: s_o, o: o_a};
marshall_to_haskell_var(&x, out, out_len, RW);
}
}
},
None => {
let s_o = false;
match o_bundle {
Some(ob) => {
let o_a = true;
let x = HrawTx { bytes: tx_bytes, s: s_o, o: o_a};
marshall_to_haskell_var(&x, out, out_len, RW);
},
None => {
let o_a = false;
let x = HrawTx { bytes: tx_bytes, s: s_o, o: o_a};
marshall_to_haskell_var(&x, out, out_len, RW);
}
}
}
let s_bundle = t.sapling_bundle().unwrap().shielded_outputs();
let mut s_output = Vec::new();
for s_each_out in s_bundle.iter() {
let mut out_bytes = Vec::new();
let _ = s_each_out.write_v4(&mut out_bytes);
s_output.push(out_bytes);
}
marshall_to_haskell_var(&s_output, out, out_len, RW);
//TODO: write array of bytes
},
Err(_e) => {

View File

@ -72,7 +72,7 @@ import ZcashHaskell.Types
-> `Bool'
#}
{# fun unsafe rust_wrapper_sapling_note_decrypt as rustWrapperSaplingNoteDecode
{# fun unsafe rust_wrapper_sapling_note_decrypt_v2 as rustWrapperSaplingNoteDecode
{ toBorshVar* `BS.ByteString'&
, toBorshVar* `BS.ByteString'&
, getVarBuffer `Buffer DecodedNote'&
@ -95,3 +95,9 @@ import ZcashHaskell.Types
-> `()'
#}
{# fun unsafe rust_wrapper_tx_parse as rustWrapperTxParse
{ toBorshVar* `BS.ByteString'&
, getVarBuffer `Buffer [BS.ByteString]'&
}
-> `()'
#}

View File

@ -5,6 +5,7 @@ import C.Zcash
, rustWrapperSaplingCheck
, rustWrapperSaplingNoteDecode
, rustWrapperSaplingVkDecode
, rustWrapperTxParse
)
import qualified Data.ByteString as BS
import Foreign.Rust.Marshall.Variable (withPureBorshVarBuffer)
@ -22,6 +23,9 @@ isValidSaplingViewingKey = rustWrapperSaplingVkDecode
matchSaplingAddress :: BS.ByteString -> BS.ByteString -> Bool
matchSaplingAddress = rustWrapperSaplingCheck
getShieldedOutputs :: BS.ByteString -> [BS.ByteString]
getShieldedOutputs tx = withPureBorshVarBuffer $ rustWrapperTxParse tx
-- | Attempt to decode the given raw tx with the given Sapling viewing key
decodeSaplingOutput :: BS.ByteString -> BS.ByteString -> Maybe DecodedNote
decodeSaplingOutput key out =

File diff suppressed because one or more lines are too long