From 124453bba2b38336c8e6bef1a141fd7a25cf8049 Mon Sep 17 00:00:00 2001 From: wanghaiwang Date: Fri, 11 Oct 2024 10:52:14 +0800 Subject: [PATCH] fix --- .../attestation-service/Cargo.toml | 2 + .../attestation-service/verifier/Cargo.toml | 5 +- .../attestation-service/verifier/src/lib.rs | 5 + .../verifier/src/rustcca/LICENSE | 201 ++++++++++++++ .../verifier/src/rustcca/mod.rs | 251 ++++++++++++++++++ .../verifier/test_data/cca-token-01.cbor | Bin 0 -> 1222 bytes .../verifier/test_data/cca-token-02.cbor | Bin 0 -> 1125 bytes .../verifier/test_data/cpak.json | 6 + .../attestation/attestation-types/src/lib.rs | 3 +- 9 files changed, 471 insertions(+), 2 deletions(-) create mode 100644 service/attestation/attestation-service/verifier/src/rustcca/LICENSE create mode 100644 service/attestation/attestation-service/verifier/src/rustcca/mod.rs create mode 100644 service/attestation/attestation-service/verifier/test_data/cca-token-01.cbor create mode 100644 service/attestation/attestation-service/verifier/test_data/cca-token-02.cbor create mode 100644 service/attestation/attestation-service/verifier/test_data/cpak.json diff --git a/service/attestation/attestation-service/Cargo.toml b/service/attestation/attestation-service/Cargo.toml index 1736c38..f2f793a 100644 --- a/service/attestation/attestation-service/Cargo.toml +++ b/service/attestation/attestation-service/Cargo.toml @@ -40,3 +40,5 @@ uuid = { version = "1.2.2", features = ["serde", "v4"] } scc = "2.1" attestation-types = {path = "../attestation-types"} +ear = "0.1.1" +ccatoken = "0.1.0" diff --git a/service/attestation/attestation-service/verifier/Cargo.toml b/service/attestation/attestation-service/verifier/Cargo.toml index e870fa7..a8b97b2 100644 --- a/service/attestation/attestation-service/verifier/Cargo.toml +++ b/service/attestation/attestation-service/verifier/Cargo.toml @@ -17,11 +17,14 @@ ima-measurements.workspace = true rand.workspace = true fallible-iterator.workspace = true attestation-types.workspace = true +ccatoken.workspace = true +ear.workspace = true [dev-dependencies] [features] -default = [ "itrustee-verifier","virtcca-verifier" ] +default = [ "itrustee-verifier","virtcca-verifier"] itrustee-verifier = [] virtcca-verifier = [] +rustcca-verifier = [] no_as = [] diff --git a/service/attestation/attestation-service/verifier/src/lib.rs b/service/attestation/attestation-service/verifier/src/lib.rs index 0b776c2..42dd7d0 100644 --- a/service/attestation/attestation-service/verifier/src/lib.rs +++ b/service/attestation/attestation-service/verifier/src/lib.rs @@ -26,6 +26,9 @@ pub mod itrustee; #[cfg(feature = "virtcca-verifier")] pub mod virtcca; +#[cfg(feature = "rustcca-verifier")] +pub mod rustcca; + pub type TeeClaim = serde_json::Value; #[derive(Debug, Default)] @@ -54,6 +57,8 @@ impl VerifierAPIs for Verifier { TeeType::Itrustee => itrustee::ItrusteeVerifier::default().evaluate(user_data, evidence).await, #[cfg(feature = "virtcca-verifier")] TeeType::Virtcca => virtcca::VirtCCAVerifier::default().evaluate(user_data, evidence).await, + #[cfg(feature = "rustcca-verifier")] + TeeType::Rustcca => rustcca::RustCCAVerifier::default().evaluate(user_data, evidence).await, _ => bail!("unsupported tee type:{:?}", tee_type), } } diff --git a/service/attestation/attestation-service/verifier/src/rustcca/LICENSE b/service/attestation/attestation-service/verifier/src/rustcca/LICENSE new file mode 100644 index 0000000..2815c82 --- /dev/null +++ b/service/attestation/attestation-service/verifier/src/rustcca/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright 2023 Contributors to the Veraison project. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/service/attestation/attestation-service/verifier/src/rustcca/mod.rs b/service/attestation/attestation-service/verifier/src/rustcca/mod.rs new file mode 100644 index 0000000..fbba54f --- /dev/null +++ b/service/attestation/attestation-service/verifier/src/rustcca/mod.rs @@ -0,0 +1,251 @@ +// Copyright 2023 Contributors to the Veraison project. +// SPDX-License-Identifier: Apache-2.0 + +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2024. All rights reserved. + * secGear is licensed under the Mulan PSL v2. + * You can use this software according to the terms and conditions of the Mulan PSL v2. + * You may obtain a copy of Mulan PSL v2 at: + * http://license.coscl.org.cn/MulanPSL2 + * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR + * PURPOSE. + * See the Mulan PSL v2 for more details. + */ + +//! rust-cca verifier plugin +use super::TeeClaim; +use ear::claim::*; +use serde_json::json; +use anyhow::{Result, bail}; +extern crate ccatoken; +use ccatoken::token; +use ccatoken::store::{ + PlatformRefValue, RealmRefValue, Cpak, MemoRefValueStore, MemoTrustAnchorStore, RefValues, + SwComponent, +}; + +use serde_json::value::RawValue; +use std::error::Error; + + +const TEST_CPAK: &str = include_str!("../../test_data/cpak.json"); + +#[derive(Debug, Default)] +pub struct RustCCAVerifier {} + +impl RustCCAVerifier { + pub async fn evaluate(&self, user_data: &[u8], evidence: &[u8]) -> Result { + return evalute_wrapper(user_data, evidence); + } +} + + +//参数是challenge 和report +// 1. execute golden to get tas, rvs +// 2. execute verify +fn evalute_wrapper(user_data: &[u8], evidence: &[u8]) -> Result { + + let mut in_evidence = + token::Evidence::decode(&evidence.to_vec()).unwrap_or_else(|_| panic!("decode evidence")); + + let cpak = map_str_to_cpak(&in_evidence.platform_claims, &TEST_CPAK).unwrap_or_else(|_| panic!("map cpak")); + let _ = in_evidence.verify_with_cpak(cpak).unwrap_or_else(|_| panic!("verify cpak")); + + let (platform_tvec, realm_tvec) = in_evidence.get_trust_vectors(); + if platform_tvec.instance_identity != TRUSTWORTHY_INSTANCE { + bail!("platform is not trustworthy"); + } + if realm_tvec.instance_identity != TRUSTWORTHY_INSTANCE { + bail!("realm is not trustworthy"); + } + + let rv = map_evidence_to_refval(&in_evidence).unwrap_or_else(|_| panic!("map refval")); + let ta = map_evidence_to_trustanchor(&in_evidence.platform_claims, &TEST_CPAK).unwrap_or_else(|_| panic!("map trustanchor")); + + + let mut rvs: MemoRefValueStore = Default::default(); + rvs.load_json(&rv).unwrap_or_else(|_| panic!("load rvs")); + let mut tas: MemoTrustAnchorStore = Default::default(); + tas.load_json(&ta).unwrap_or_else(|_| panic!("load tas")); + let _ = in_evidence.verify(&tas); + + //verify challenge + let _ = verify_realm_challenge(user_data, &in_evidence.realm_claims); + + let payload = json!({ + "platform trust vector": serde_json::to_string_pretty(&platform_tvec).unwrap(), + "realm trust vector" : serde_json::to_string_pretty(&realm_tvec).unwrap(), + "realm" : { + "challenge" : hex::encode(in_evidence.realm_claims.challenge.clone()), + "perso" : hex::encode(in_evidence.realm_claims.perso.clone()), + "hash_alg" : hex::encode(in_evidence.realm_claims.hash_alg.clone()), + "rak" : hex::encode(in_evidence.realm_claims.rak.clone()) + } + }); + + let claim = json!({ + "tee_type": "ccatoken", + "payload" : payload, + }); + Ok(claim as TeeClaim) +} + + + +fn verify_realm_challenge(challenge: &[u8], realm_token: &token::Realm) -> Result<()>{ + let len = challenge.len(); + let token_challenge = &realm_token.challenge[0..len]; + + if challenge != token_challenge { + log::error!("verify cvm token challenge error, cvm_token challenge {:?}, input challenge {:?}", + token_challenge, challenge); + bail!("verify cvm token challenge error, cvm_token challenge {:?}, input challenge {:?}", + token_challenge, challenge); + } + + Ok(()) +} +fn map_str_to_cpak(p: &token::Platform, cpak_str: &str) -> Result> { + let raw_pkey = RawValue::from_string(cpak_str.to_string())?; + + let mut v = Cpak { + raw_pkey, + inst_id: p.inst_id, + impl_id: p.impl_id, + ..Default::default() + }; + v.parse_pkey()?; + Ok(v) +} + +fn map_evidence_to_refval(e: &token::Evidence) -> Result> { + let prv = map_evidence_to_platform_refval(&e.platform_claims)?; + let rrv = map_evidence_to_realm_refval(&e.realm_claims)?; + + let rvs: RefValues = RefValues { + platform: Some(vec![prv]), + realm: Some(vec![rrv]), + }; + + let j = serde_json::to_string_pretty(&rvs)?; + + Ok(j) +} + +fn map_evidence_to_platform_refval( + p: &token::Platform, +) -> Result> { + let mut v = PlatformRefValue { + impl_id: p.impl_id, + config: p.config.clone(), + ..Default::default() + }; + + for other in &p.sw_components { + let swc = SwComponent { + mval: other.mval.clone(), + signer_id: other.signer_id.clone(), + version: other.version.clone(), + mtyp: other.mtyp.clone(), + }; + + v.sw_components.push(swc) + } + + Ok(v) +} + +fn map_evidence_to_realm_refval(p: &token::Realm) -> Result> { + let mut v = RealmRefValue { + perso: p.perso.to_vec(), + rim: p.rim.clone(), + rak_hash_alg: p.rak_hash_alg.clone(), + ..Default::default() + }; + + for (i, other) in p.rem.iter().enumerate() { + v.rem[i].value.clone_from(other); + } + + Ok(v) +} + +fn map_evidence_to_trustanchor(p: &token::Platform, cpak: &str) -> Result> { + let raw_pkey = RawValue::from_string(cpak.to_string())?; + + let v = Cpak { + raw_pkey, + inst_id: p.inst_id, + impl_id: p.impl_id, + ..Default::default() // pkey is not serialised + }; + + let j = serde_json::to_string_pretty(&vec![v])?; + + Ok(j) +} +#[cfg(test)] +mod tests { + use super::*; + use ear::claim::TRUSTWORTHY_INSTANCE; + + + const TEST_CCA_TOKEN: &[u8; 1222] = include_bytes!("../../test_data/cca-token-01.cbor"); + //const TEST_CCA_TOKEN: &[u8; 1125] = include_bytes!("../../test_data/cca-token-02.cbor"); + const TEST_CPAK: &str = include_str!("../../test_data/cpak.json"); + + + #[test] + fn cca_test() -> Result<(), Box>{ + + + let mut evidence = + token::Evidence::decode(&TEST_CCA_TOKEN.to_vec()).expect("decoding TEST_CCA_TOKEN"); + + let j = TEST_CPAK; + let cpak = map_str_to_cpak(&evidence.platform_claims, &j)?; + let _ = evidence.verify_with_cpak(cpak)?; + + + + let (platform_tvec, realm_tvec) = evidence.get_trust_vectors(); + if platform_tvec.instance_identity != TRUSTWORTHY_INSTANCE { + return Err("platform is not trustworthy".into()); + } + if realm_tvec.instance_identity != TRUSTWORTHY_INSTANCE { + return Err("realm is not trustworthy".into()); + } + + let rv = map_evidence_to_refval(&evidence)?; + let ta = map_evidence_to_trustanchor(&evidence.platform_claims, &j)?; + + let mut rvs: MemoRefValueStore = Default::default(); + rvs.load_json(&rv)?; + let mut tas: MemoTrustAnchorStore = Default::default(); + tas.load_json(&ta)?; + let _ = evidence.verify(&tas); + + + let (platform_tvec, realm_tvec) = evidence.get_trust_vectors(); + let payload = json!({ + "platform trust vector": serde_json::to_string_pretty(&platform_tvec).unwrap(), + "realm trust vector" : serde_json::to_string_pretty(&realm_tvec).unwrap(), + "realm" : { + "challenge" : hex::encode(evidence.realm_claims.challenge.clone()), + "perso" : hex::encode(evidence.realm_claims.perso.clone()), + "hash_alg" : hex::encode(evidence.realm_claims.hash_alg.clone()), + "rak" : hex::encode(evidence.realm_claims.rak.clone()) + } + }); + + let claim = json!({ + "tee_type": "ccatoken", + "payload" : payload, + }); + println!("verify success {:?}", claim); + Ok(()) + } + +} + diff --git a/service/attestation/attestation-service/verifier/test_data/cca-token-01.cbor b/service/attestation/attestation-service/verifier/test_data/cca-token-01.cbor new file mode 100644 index 0000000000000000000000000000000000000000..e40f8b77c10ffea0bc3d7d775c5337a72e42a04f GIT binary patch literal 1222 zcmcb~*uO|}&8bMH$(LGO7BX5WEr?`NTPexNSs{~AQc_^0ub)_ytCyUgtMBaWs2d#Y zqHm~Ypl84pp|Ewj&9?4U^N)r`RAkp3tIvGG`*l~;O2xB0>R(vf7YM$RsCV^o zV`5}vfB|L(I|dLhAOa#H$;c3)$jHvd%EHXV$iUCX%frpZ$ssN#Dk3Z-C?GE zDIv+3NR+B*Ndsm{&ZP9>j6_`{Q!`1<_?D%NNlrej5ekH?U`aLBGto0*BCL`PX8aPy zBws^fj7~Nr%3zRrM#Pwx3N%m8m$ z1Jj4+mul_#vF*C*B1Xne$K8+l10+{u*+gG6h_bxfbhT>kG1nD_-`fjrADW%xD=fUk zUUYU#zPL`+$A>30qz`{DH}ZL~XT!;l0Z*3Qcv3PW{M^0P(&_2Z*)L@}GK8fi*IbNb zQidl?#%;^FA{fyJQYnhOZ#=?I6Aj8uif(#+&+g`}eV@;rsK{0fDv(%gb# zg?yl&6%36PauTa56;krki}kRnm0WW+B9W!+X9uVB)7H0+4N`A@?T85JNoK7R+wiPR zhF&ey{qZn8*^NzAew#LH^Nqg;~iIA3OWP|vpKK1*glOfN3> zPh5B^ky%=MzwN|+{VD&CDD?$Qoa(Ypa?QC21z3i{MN6(Z-$Gawom3=zJ~HEeR`;Hx zO>XW7D}(dej{MxYsH$q&tdMWFjanz&dl|9gcdCuQr-I4is<&-NHe*UQb>78NIJ4Z*AqW~IiMSK7N literal 0 HcmV?d00001 diff --git a/service/attestation/attestation-service/verifier/test_data/cca-token-02.cbor b/service/attestation/attestation-service/verifier/test_data/cca-token-02.cbor new file mode 100644 index 0000000000000000000000000000000000000000..ac1500dfc79f6e8f1dced0873d366f9a875e8497 GIT binary patch literal 1125 zcmcb~*uO|}&8bMnNtarj7c#0Xh-7qIDapuLA(K&3QedU8pIDTumzVRWXTTNV!1`=!hs&`AXC*BZGI#ym@MKDwmerjfe;%EwY$F~KQ zZ*eJ9b*F{qaVdSA_ssi_e&#2^D&vU?>KLLs@E3VrFrEo?dE2Vs1fBs(zWFesV@) zPEKlGda7k+UU8}Je6L=ixY&kI89i1qHl50)_4RN6iO0GE<;owXmkX&=Vg>qAdhY6Bv&cM=*(2Etj>jeSWR( ztmK*tU<*wRjUp2KDi`&7>8=SnabaG;F58~l_ii#6U96H7=kLxHZR+mpaJy#b5tX-6 zv|!o3M;i8zw;d1*4*#``G4a~@1**%ZEIn&t8{lMOaM?rol+(h)yZNpgM$LPF^|A2v NbxRi{F)w_O4gi`fWtac} literal 0 HcmV?d00001 diff --git a/service/attestation/attestation-service/verifier/test_data/cpak.json b/service/attestation/attestation-service/verifier/test_data/cpak.json new file mode 100644 index 0000000..0cefd99 --- /dev/null +++ b/service/attestation/attestation-service/verifier/test_data/cpak.json @@ -0,0 +1,6 @@ +{ + "crv": "P-384", + "kty": "EC", + "x": "IShnxS4rlQiwpCCpBWDzlNLfqiG911FP8akBr-fh94uxHU5m-Kijivp2r2oxxN6M", + "y": "hM4tr8mWQli1P61xh3T0ViDREbF26DGOEYfbAjWjGNN7pZf-6A4OTHYqEryz6m7U" +} diff --git a/service/attestation/attestation-types/src/lib.rs b/service/attestation/attestation-types/src/lib.rs index 67dcf9f..f6f3fdb 100644 --- a/service/attestation/attestation-types/src/lib.rs +++ b/service/attestation/attestation-types/src/lib.rs @@ -25,6 +25,7 @@ pub struct VirtccaEvidence { pub enum TeeType { Itrustee = 1, Virtcca, + Rustcca, Invalid, } @@ -51,4 +52,4 @@ pub struct Claims { pub evaluation_reports: EvlResult, pub tee: String, pub tcb_status: Value, -} \ No newline at end of file +} -- Gitee