Skip to content

Commit

Permalink
Verifier: add IBM SE create verify dummy code
Browse files Browse the repository at this point in the history
Signed-off-by: Qi Feng Huo <huoqif@cn.ibm.com>
  • Loading branch information
Qi Feng Huo committed Mar 13, 2024
1 parent 2c44b6f commit ada0e75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions attestation-service/verifier/src/se/seattest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl SeFakeVerifier for FakeSeAttest {
_signing_file: &'b str,
_arpk_file: &'c str,
) -> Result<Vec<u8>> {
Result::Ok(Vec::new())
Result::Ok("test".as_bytes().to_vec())
}

async fn verify<'a, 'b>(
Expand All @@ -45,6 +45,6 @@ impl SeFakeVerifier for FakeSeAttest {
_arpk_file: &'a str,
_hkd_files: &'b str,
) -> Result<Vec<u8>> {
Result::Ok(Vec::new())
Result::Ok("test".as_bytes().to_vec())
}
}

0 comments on commit ada0e75

Please sign in to comment.