Skip to content

Commit

Permalink
Merge branch 'POP-1768-retrieve-keys-from-remote-storage' of github.c…
Browse files Browse the repository at this point in the history
…om:worldcoin/gpu-iris-mpc into POP-1768-retrieve-keys-from-remote-storage
  • Loading branch information
wojciechsromek committed Aug 20, 2024
2 parents e620ad4 + 432d934 commit f0c7e65
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions iris-mpc-common/tests/smpc_request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ mod tests {
async fn test_decrypt_iris_share_success() {
// Mocked base64 encoded JSON string
let iris_codes_json = IrisCodesJSON {
iris_version: "1.0".to_string(),
left_iris_code: "left_code".to_string(),
right_iris_code: "right_code".to_string(),
left_iris_mask: "left_mask".to_string(),
right_iris_mask: "right_mask".to_string(),
iris_version: "1.0".to_string(),
left_iris_code_shares: "left_code".to_string(),
right_iris_code_shares: "right_code".to_string(),
left_iris_mask_shares: "left_mask".to_string(),
right_iris_mask_shares: "right_mask".to_string(),
};

let decoded_public_key = STANDARD.decode(PUBLIC_KEY.as_bytes()).unwrap();
Expand Down

0 comments on commit f0c7e65

Please sign in to comment.