mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-15 11:15:48 +00:00
Tweaks to debug output and function names
This commit is contained in:
parent
23aa869bf4
commit
d4fce58019
@ -67,7 +67,7 @@ impl fmt::Debug for Memo {
|
|||||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
write!(f, "Memo(")?;
|
write!(f, "Memo(")?;
|
||||||
match self.to_utf8() {
|
match self.to_utf8() {
|
||||||
Some(Ok(memo)) => write!(f, "{}", memo)?,
|
Some(Ok(memo)) => write!(f, "\"{}\"", memo)?,
|
||||||
_ => fmt_colon_delimited_hex(f, &self.0[..])?,
|
_ => fmt_colon_delimited_hex(f, &self.0[..])?,
|
||||||
}
|
}
|
||||||
write!(f, ")")
|
write!(f, ")")
|
||||||
@ -347,7 +347,7 @@ impl SaplingNoteEncryption {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_note_plaintext_minus_memo(
|
fn parse_note_plaintext_without_memo(
|
||||||
ivk: &Fs,
|
ivk: &Fs,
|
||||||
cmu: &Fr,
|
cmu: &Fr,
|
||||||
plaintext: &[u8],
|
plaintext: &[u8],
|
||||||
@ -409,7 +409,7 @@ pub fn try_sapling_note_decryption(
|
|||||||
NOTE_PLAINTEXT_SIZE
|
NOTE_PLAINTEXT_SIZE
|
||||||
);
|
);
|
||||||
|
|
||||||
let (note, to) = parse_note_plaintext_minus_memo(ivk, cmu, &plaintext)?;
|
let (note, to) = parse_note_plaintext_without_memo(ivk, cmu, &plaintext)?;
|
||||||
|
|
||||||
let mut memo = [0u8; 512];
|
let mut memo = [0u8; 512];
|
||||||
memo.copy_from_slice(&plaintext[COMPACT_NOTE_SIZE..NOTE_PLAINTEXT_SIZE]);
|
memo.copy_from_slice(&plaintext[COMPACT_NOTE_SIZE..NOTE_PLAINTEXT_SIZE]);
|
||||||
@ -454,7 +454,7 @@ pub fn try_sapling_compact_note_decryption(
|
|||||||
CHACHA20_BLOCK_SIZE + COMPACT_NOTE_SIZE
|
CHACHA20_BLOCK_SIZE + COMPACT_NOTE_SIZE
|
||||||
);
|
);
|
||||||
|
|
||||||
parse_note_plaintext_minus_memo(ivk, cmu, &plaintext[CHACHA20_BLOCK_SIZE..])
|
parse_note_plaintext_without_memo(ivk, cmu, &plaintext[CHACHA20_BLOCK_SIZE..])
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Recovery of the full note plaintext by the sender.
|
/// Recovery of the full note plaintext by the sender.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user