Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmMichaelConnor committed Nov 5, 2024
1 parent cdd0a61 commit 89c49b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions example/src/main.nr
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,10 @@ fn test_main() {
let hash: [u8; 32] = dep::std::hash::sha256("hello world".as_bytes());

/* COMMENT-OUT ONE OF THESE CALLS TO `main`. */

/* ATTEMPT 1 */

// This will work after https://github.com/noir-lang/noir/pull/6450
// main(hash, signature);

// This will work after https://github.com/noir-lang/noir/pull/6450
// main(hash, signature);
/* ATTEMPT 2 */

// This succeeds:
let params_tuple: (bool, [Field; 18], [Field; 18]) =
(has_multiplicative_inverse, modulus_limbs, redc_limbs);
Expand Down
2 changes: 1 addition & 1 deletion lib/src/rsa.nr
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use dep::bignum::{ RuntimeBigNum, params::BigNumParams };
use dep::bignum::{RuntimeBigNum, params::BigNumParams};

/**
* @brief Compare a recovered byte hash from an RSA signature to the original message hash
Expand Down

0 comments on commit 89c49b2

Please sign in to comment.