Rust fmt and clippy

This commit is contained in:
Sam Kim 2021-10-05 10:23:23 -04:00 committed by Michael Vines
parent 25216705b3
commit a5d1efc207
2 changed files with 7 additions and 13 deletions

View File

@ -123,7 +123,7 @@ impl CloseAccountProof {
// Edge case #2: if D is zeroed, but C is not, then this is an invalid ciphertext
if D.is_identity() {
transcript.append_point(b"R", &R);
return Err(ProofError::VerificationError)
return Err(ProofError::VerificationError);
}
// generate a challenge scalar
@ -148,7 +148,7 @@ impl CloseAccountProof {
mod test {
use super::*;
use crate::encryption::elgamal::ElGamal;
use crate::encryption::pedersen::{Pedersen, PedersenOpening, PedersenDecryptHandle};
use crate::encryption::pedersen::{Pedersen, PedersenDecryptHandle, PedersenOpening};
#[test]
fn test_close_account_correctness() {

View File

@ -215,7 +215,7 @@ impl UpdateAccountPkProof {
mod test {
use super::*;
use crate::encryption::elgamal::ElGamal;
use crate::encryption::pedersen::{Pedersen, PedersenOpening, PedersenDecryptHandle};
use crate::encryption::pedersen::{Pedersen, PedersenDecryptHandle, PedersenOpening};
#[test]
fn test_update_account_public_key_general_cases() {
@ -284,6 +284,7 @@ mod test {
.is_ok());
}
#[test]
fn test_update_account_public_key_partially_zeroed_ciphertexts() {
let (current_pk, current_sk) = ElGamal::new();
let (new_pk, new_sk) = ElGamal::new();
@ -308,9 +309,7 @@ mod test {
&zeroed_comm_ciphertext,
&new_ct,
);
assert!(proof
.verify(&zeroed_comm_ciphertext, &new_ct)
.is_err());
assert!(proof.verify(&zeroed_comm_ciphertext, &new_ct).is_err());
let zeroed_handle_ciphertext = ElGamalCiphertext {
message_comm: balance_ciphertext.message_comm,
@ -324,9 +323,7 @@ mod test {
&zeroed_handle_ciphertext,
&new_ct,
);
assert!(proof
.verify(&zeroed_handle_ciphertext, &new_ct)
.is_err());
assert!(proof.verify(&zeroed_handle_ciphertext, &new_ct).is_err());
// Partially zeroed cipehrtext as new ciphertext
let zeroed_comm_ciphertext = ElGamalCiphertext {
@ -342,9 +339,7 @@ mod test {
&current_ct,
&zeroed_comm_ciphertext,
);
assert!(proof
.verify(&current_ct, &zeroed_comm_ciphertext)
.is_err());
assert!(proof.verify(&current_ct, &zeroed_comm_ciphertext).is_err());
let zeroed_handle_ciphertext = ElGamalCiphertext {
message_comm: balance_ciphertext.message_comm,
@ -361,6 +356,5 @@ mod test {
assert!(proof
.verify(&current_ct, &zeroed_handle_ciphertext)
.is_err());
}
}