Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 1 | // Copyright 2021, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | //! Implements safe wrappers around the public API of libopen-dice. |
| 16 | //! ## Example: |
| 17 | //! ``` |
| 18 | //! use diced_open_dice_cbor as dice; |
| 19 | //! |
| 20 | //! let context = dice::dice::OpenDiceCborContext::new() |
| 21 | //! let parent_cdi_attest = [1u8, dice::CDI_SIZE]; |
| 22 | //! let parent_cdi_seal = [2u8, dice::CDI_SIZE]; |
Alice Wang | b68814b | 2023-02-02 13:15:32 +0000 | [diff] [blame] | 23 | //! let input_values = dice::InputValues::new( |
| 24 | //! [3u8, dice::HASH_SIZE], // code_hash |
| 25 | //! dice::Config::Descriptor(&"My descriptor".as_bytes().to_vec()), |
| 26 | //! [0u8, dice::HASH_SIZE], // authority_hash |
| 27 | //! dice::DiceMode::kDiceModeNormal, |
| 28 | //! [0u8, dice::HIDDEN_SIZE], // hidden |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 29 | //! }; |
| 30 | //! let (cdi_attest, cdi_seal, cert_chain) = context |
| 31 | //! .main_flow(&parent_cdi_attest, &parent_cdi_seal, &input_values)?; |
| 32 | //! ``` |
| 33 | |
Alice Wang | 856d656 | 2023-02-03 13:51:08 +0000 | [diff] [blame] | 34 | pub use diced_open_dice::{ |
Alice Wang | f4bd1c6 | 2023-02-08 08:38:44 +0000 | [diff] [blame] | 35 | check_result, derive_cdi_private_key_seed, hash, retry_bcc_format_config_descriptor, |
Alice Wang | 44f48b2 | 2023-02-09 09:51:22 +0000 | [diff] [blame] | 36 | retry_bcc_main_flow, retry_dice_main_flow, Config, DiceError, Hash, Hidden, InputValues, |
| 37 | OwnedDiceArtifacts, Result, CDI_SIZE, HASH_SIZE, HIDDEN_SIZE, PRIVATE_KEY_SEED_SIZE, |
Alice Wang | 856d656 | 2023-02-03 13:51:08 +0000 | [diff] [blame] | 38 | }; |
| 39 | use keystore2_crypto::ZVec; |
Alice Wang | 97d47a7 | 2023-01-31 12:48:02 +0000 | [diff] [blame] | 40 | pub use open_dice_cbor_bindgen::DiceMode; |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 41 | use open_dice_cbor_bindgen::{ |
Alice Wang | 4d61177 | 2023-02-13 09:45:21 +0000 | [diff] [blame^] | 42 | DiceKeypairFromSeed, DiceSign, DiceVerify, DICE_PRIVATE_KEY_SIZE, DICE_PUBLIC_KEY_SIZE, |
| 43 | DICE_SIGNATURE_SIZE, |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 44 | }; |
Alice Wang | 856d656 | 2023-02-03 13:51:08 +0000 | [diff] [blame] | 45 | use std::ffi::c_void; |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 46 | |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 47 | /// The size of a private key. |
| 48 | pub const PRIVATE_KEY_SIZE: usize = DICE_PRIVATE_KEY_SIZE as usize; |
| 49 | /// The size of a public key. |
| 50 | pub const PUBLIC_KEY_SIZE: usize = DICE_PUBLIC_KEY_SIZE as usize; |
| 51 | /// The size of a signature. |
| 52 | pub const SIGNATURE_SIZE: usize = DICE_SIGNATURE_SIZE as usize; |
| 53 | |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 54 | /// Some libopen-dice variants use a context. Developers that want to customize these |
| 55 | /// bindings may want to implement their own Context factory that creates a context |
| 56 | /// useable by their preferred backend. |
| 57 | pub trait Context { |
| 58 | /// # Safety |
| 59 | /// The return value of get_context is passed to any open dice function. |
| 60 | /// Implementations must explain why the context pointer returned is safe |
| 61 | /// to be used by the open dice library. |
| 62 | unsafe fn get_context(&mut self) -> *mut c_void; |
| 63 | } |
| 64 | |
| 65 | impl<T: Context + Send> ContextImpl for T {} |
| 66 | |
| 67 | /// This represents a context for the open dice library. The wrapped open dice instance, which |
| 68 | /// is based on boringssl and cbor, does not use a context, so that this type is empty. |
| 69 | #[derive(Default)] |
| 70 | pub struct OpenDiceCborContext(); |
| 71 | |
| 72 | impl OpenDiceCborContext { |
| 73 | /// Construct a new instance of OpenDiceCborContext. |
| 74 | pub fn new() -> Self { |
| 75 | Default::default() |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | impl Context for OpenDiceCborContext { |
| 80 | unsafe fn get_context(&mut self) -> *mut c_void { |
| 81 | // # Safety |
| 82 | // The open dice cbor implementation does not use a context. It is safe |
| 83 | // to return NULL. |
| 84 | std::ptr::null_mut() |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | /// Type alias for ZVec indicating that it holds a CDI_ATTEST secret. |
| 89 | pub type CdiAttest = ZVec; |
| 90 | |
| 91 | /// Type alias for ZVec indicating that it holds a CDI_SEAL secret. |
| 92 | pub type CdiSeal = ZVec; |
| 93 | |
| 94 | /// Type alias for Vec<u8> indicating that it hold a DICE certificate. |
| 95 | pub type Cert = Vec<u8>; |
| 96 | |
Janis Danisevskis | 2cef73f | 2021-11-03 15:02:48 -0700 | [diff] [blame] | 97 | /// Type alias for Vec<u8> indicating that it holds a BCC certificate chain. |
| 98 | pub type Bcc = Vec<u8>; |
| 99 | |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 100 | /// ContextImpl is a mixin trait that implements the safe wrappers around the open dice |
| 101 | /// library calls. Implementations must implement Context::get_context(). As of |
| 102 | /// this writing, the only implementation is OpenDiceCborContext, which returns NULL. |
| 103 | pub trait ContextImpl: Context + Send { |
Janis Danisevskis | 13356b2 | 2021-10-20 09:44:12 -0700 | [diff] [blame] | 104 | /// Safe wrapper around open-dice DiceKeyPairFromSeed, see open dice |
| 105 | /// documentation for details. |
| 106 | fn keypair_from_seed(&mut self, seed: &[u8; PRIVATE_KEY_SEED_SIZE]) -> Result<(Vec<u8>, ZVec)> { |
| 107 | let mut private_key = ZVec::new(PRIVATE_KEY_SIZE)?; |
| 108 | let mut public_key = vec![0u8; PUBLIC_KEY_SIZE]; |
| 109 | |
| 110 | // SAFETY: |
| 111 | // * The first context argument may be NULL and is unused by the wrapped |
| 112 | // implementation. |
| 113 | // * The second argument is a pointer to a const buffer of size `PRIVATE_KEY_SEED_SIZE` |
| 114 | // fulfilled by the definition of the argument. |
| 115 | // * The third argument and the fourth argument are mutable buffers of size |
| 116 | // `PRIVATE_KEY_SIZE` and `PUBLIC_KEY_SIZE` respectively. This is fulfilled by the |
| 117 | // allocations above. |
| 118 | // * All pointers must be valid for the duration of the function call but not beyond. |
| 119 | check_result(unsafe { |
| 120 | DiceKeypairFromSeed( |
| 121 | self.get_context(), |
| 122 | seed.as_ptr(), |
| 123 | public_key.as_mut_ptr(), |
| 124 | private_key.as_mut_ptr(), |
| 125 | ) |
| 126 | })?; |
| 127 | Ok((public_key, private_key)) |
| 128 | } |
| 129 | |
| 130 | /// Safe wrapper around open-dice DiceSign, see open dice |
| 131 | /// documentation for details. |
| 132 | fn sign(&mut self, message: &[u8], private_key: &[u8; PRIVATE_KEY_SIZE]) -> Result<Vec<u8>> { |
| 133 | let mut signature = vec![0u8; SIGNATURE_SIZE]; |
| 134 | |
| 135 | // SAFETY: |
| 136 | // * The first context argument may be NULL and is unused by the wrapped |
| 137 | // implementation. |
| 138 | // * The second argument and the third argument are the pointer to and length of the given |
| 139 | // message buffer. |
| 140 | // * The fourth argument is a const buffer of size `PRIVATE_KEY_SIZE`. This is fulfilled |
| 141 | // by the definition of `private key`. |
| 142 | // * The fifth argument is mutable buffer of size `SIGNATURE_SIZE`. This is fulfilled |
| 143 | // by the allocation above. |
| 144 | // * All pointers must be valid for the duration of the function call but not beyond. |
| 145 | check_result(unsafe { |
| 146 | DiceSign( |
| 147 | self.get_context(), |
| 148 | message.as_ptr(), |
| 149 | message.len(), |
| 150 | private_key.as_ptr(), |
| 151 | signature.as_mut_ptr(), |
| 152 | ) |
| 153 | })?; |
| 154 | Ok(signature) |
| 155 | } |
| 156 | |
| 157 | /// Safe wrapper around open-dice DiceVerify, see open dice |
| 158 | /// documentation for details. |
| 159 | fn verify( |
| 160 | &mut self, |
| 161 | message: &[u8], |
| 162 | signature: &[u8; SIGNATURE_SIZE], |
| 163 | public_key: &[u8; PUBLIC_KEY_SIZE], |
| 164 | ) -> Result<()> { |
| 165 | // SAFETY: |
| 166 | // * The first context argument may be NULL and is unused by the wrapped |
| 167 | // implementation. |
| 168 | // * The second argument and the third argument are the pointer to and length of the given |
| 169 | // message buffer. |
| 170 | // * The fourth argument is a const buffer of size `SIGNATURE_SIZE`. This is fulfilled |
| 171 | // by the definition of `signature`. |
| 172 | // * The fifth argument is a const buffer of size `PUBLIC_KEY_SIZE`. This is fulfilled |
| 173 | // by the definition of `public_key`. |
| 174 | // * All pointers must be valid for the duration of the function call but not beyond. |
| 175 | check_result(unsafe { |
| 176 | DiceVerify( |
| 177 | self.get_context(), |
| 178 | message.as_ptr(), |
| 179 | message.len(), |
| 180 | signature.as_ptr(), |
| 181 | public_key.as_ptr(), |
| 182 | ) |
| 183 | }) |
| 184 | } |
Janis Danisevskis | 2cef73f | 2021-11-03 15:02:48 -0700 | [diff] [blame] | 185 | } |
| 186 | |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 187 | #[cfg(test)] |
| 188 | mod test { |
| 189 | use super::*; |
| 190 | use diced_sample_inputs::make_sample_bcc_and_cdis; |
| 191 | use std::convert::TryInto; |
| 192 | |
| 193 | static SEED_TEST_VECTOR: &[u8] = &[ |
| 194 | 0xfa, 0x3c, 0x2f, 0x58, 0x37, 0xf5, 0x8e, 0x96, 0x16, 0x09, 0xf5, 0x22, 0xa1, 0xf1, 0xba, |
| 195 | 0xaa, 0x19, 0x95, 0x01, 0x79, 0x2e, 0x60, 0x56, 0xaf, 0xf6, 0x41, 0xe7, 0xff, 0x48, 0xf5, |
| 196 | 0x3a, 0x08, 0x84, 0x8a, 0x98, 0x85, 0x6d, 0xf5, 0x69, 0x21, 0x03, 0xcd, 0x09, 0xc3, 0x28, |
| 197 | 0xd6, 0x06, 0xa7, 0x57, 0xbd, 0x48, 0x4b, 0x0f, 0x79, 0x0f, 0xf8, 0x2f, 0xf0, 0x0a, 0x41, |
| 198 | 0x94, 0xd8, 0x8c, 0xa8, |
| 199 | ]; |
| 200 | |
| 201 | static CDI_ATTEST_TEST_VECTOR: &[u8] = &[ |
| 202 | 0xfa, 0x3c, 0x2f, 0x58, 0x37, 0xf5, 0x8e, 0x96, 0x16, 0x09, 0xf5, 0x22, 0xa1, 0xf1, 0xba, |
| 203 | 0xaa, 0x19, 0x95, 0x01, 0x79, 0x2e, 0x60, 0x56, 0xaf, 0xf6, 0x41, 0xe7, 0xff, 0x48, 0xf5, |
| 204 | 0x3a, 0x08, |
| 205 | ]; |
| 206 | static CDI_PRIVATE_KEY_SEED_TEST_VECTOR: &[u8] = &[ |
| 207 | 0x5f, 0xcc, 0x8e, 0x1a, 0xd1, 0xc2, 0xb3, 0xe9, 0xfb, 0xe1, 0x68, 0xf0, 0xf6, 0x98, 0xfe, |
| 208 | 0x0d, 0xee, 0xd4, 0xb5, 0x18, 0xcb, 0x59, 0x70, 0x2d, 0xee, 0x06, 0xe5, 0x70, 0xf1, 0x72, |
| 209 | 0x02, 0x6e, |
| 210 | ]; |
| 211 | |
| 212 | static PUB_KEY_TEST_VECTOR: &[u8] = &[ |
| 213 | 0x47, 0x42, 0x4b, 0xbd, 0xd7, 0x23, 0xb4, 0xcd, 0xca, 0xe2, 0x8e, 0xdc, 0x6b, 0xfc, 0x23, |
| 214 | 0xc9, 0x21, 0x5c, 0x48, 0x21, 0x47, 0xee, 0x5b, 0xfa, 0xaf, 0x88, 0x9a, 0x52, 0xf1, 0x61, |
| 215 | 0x06, 0x37, |
| 216 | ]; |
| 217 | static PRIV_KEY_TEST_VECTOR: &[u8] = &[ |
| 218 | 0x5f, 0xcc, 0x8e, 0x1a, 0xd1, 0xc2, 0xb3, 0xe9, 0xfb, 0xe1, 0x68, 0xf0, 0xf6, 0x98, 0xfe, |
| 219 | 0x0d, 0xee, 0xd4, 0xb5, 0x18, 0xcb, 0x59, 0x70, 0x2d, 0xee, 0x06, 0xe5, 0x70, 0xf1, 0x72, |
| 220 | 0x02, 0x6e, 0x47, 0x42, 0x4b, 0xbd, 0xd7, 0x23, 0xb4, 0xcd, 0xca, 0xe2, 0x8e, 0xdc, 0x6b, |
| 221 | 0xfc, 0x23, 0xc9, 0x21, 0x5c, 0x48, 0x21, 0x47, 0xee, 0x5b, 0xfa, 0xaf, 0x88, 0x9a, 0x52, |
| 222 | 0xf1, 0x61, 0x06, 0x37, |
| 223 | ]; |
| 224 | |
| 225 | static SIGNATURE_TEST_VECTOR: &[u8] = &[ |
| 226 | 0x44, 0xae, 0xcc, 0xe2, 0xb9, 0x96, 0x18, 0x39, 0x0e, 0x61, 0x0f, 0x53, 0x07, 0xbf, 0xf2, |
| 227 | 0x32, 0x3d, 0x44, 0xd4, 0xf2, 0x07, 0x23, 0x30, 0x85, 0x32, 0x18, 0xd2, 0x69, 0xb8, 0x29, |
| 228 | 0x3c, 0x26, 0xe6, 0x0d, 0x9c, 0xa5, 0xc2, 0x73, 0xcd, 0x8c, 0xb8, 0x3c, 0x3e, 0x5b, 0xfd, |
| 229 | 0x62, 0x8d, 0xf6, 0xc4, 0x27, 0xa6, 0xe9, 0x11, 0x06, 0x5a, 0xb2, 0x2b, 0x64, 0xf7, 0xfc, |
| 230 | 0xbb, 0xab, 0x4a, 0x0e, |
| 231 | ]; |
| 232 | |
| 233 | #[test] |
| 234 | fn hash_derive_sign_verify() { |
| 235 | let mut ctx = OpenDiceCborContext::new(); |
Alice Wang | 24954b4 | 2023-02-06 10:03:45 +0000 | [diff] [blame] | 236 | let seed = diced_open_dice::hash("MySeedString".as_bytes()).unwrap(); |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 237 | assert_eq!(seed, SEED_TEST_VECTOR); |
| 238 | let cdi_attest = &seed[..CDI_SIZE]; |
| 239 | assert_eq!(cdi_attest, CDI_ATTEST_TEST_VECTOR); |
| 240 | let cdi_private_key_seed = |
Alice Wang | 7cc5956 | 2023-02-08 13:17:10 +0000 | [diff] [blame] | 241 | derive_cdi_private_key_seed(cdi_attest.try_into().unwrap()).unwrap(); |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 242 | assert_eq!(&cdi_private_key_seed[..], CDI_PRIVATE_KEY_SEED_TEST_VECTOR); |
| 243 | let (pub_key, priv_key) = |
| 244 | ctx.keypair_from_seed(cdi_private_key_seed[..].try_into().unwrap()).unwrap(); |
| 245 | assert_eq!(&pub_key, PUB_KEY_TEST_VECTOR); |
| 246 | assert_eq!(&priv_key[..], PRIV_KEY_TEST_VECTOR); |
| 247 | let mut signature = |
| 248 | ctx.sign("MyMessage".as_bytes(), priv_key[..].try_into().unwrap()).unwrap(); |
| 249 | assert_eq!(&signature, SIGNATURE_TEST_VECTOR); |
| 250 | assert!(ctx |
| 251 | .verify( |
| 252 | "MyMessage".as_bytes(), |
| 253 | signature[..].try_into().unwrap(), |
| 254 | pub_key[..].try_into().unwrap() |
| 255 | ) |
| 256 | .is_ok()); |
| 257 | assert!(ctx |
| 258 | .verify( |
| 259 | "MyMessage_fail".as_bytes(), |
| 260 | signature[..].try_into().unwrap(), |
| 261 | pub_key[..].try_into().unwrap() |
| 262 | ) |
| 263 | .is_err()); |
| 264 | signature[0] += 1; |
| 265 | assert!(ctx |
| 266 | .verify( |
| 267 | "MyMessage".as_bytes(), |
| 268 | signature[..].try_into().unwrap(), |
| 269 | pub_key[..].try_into().unwrap() |
| 270 | ) |
| 271 | .is_err()); |
| 272 | } |
| 273 | |
| 274 | static SAMPLE_CDI_ATTEST_TEST_VECTOR: &[u8] = &[ |
| 275 | 0x3e, 0x57, 0x65, 0x5d, 0x48, 0x02, 0xbd, 0x5c, 0x66, 0xcc, 0x1f, 0x0f, 0xbe, 0x5e, 0x32, |
| 276 | 0xb6, 0x9e, 0x3d, 0x04, 0xaf, 0x00, 0x15, 0xbc, 0xdd, 0x1f, 0xbc, 0x59, 0xe4, 0xc3, 0x87, |
| 277 | 0x95, 0x5e, |
| 278 | ]; |
| 279 | |
| 280 | static SAMPLE_CDI_SEAL_TEST_VECTOR: &[u8] = &[ |
| 281 | 0x36, 0x1b, 0xd2, 0xb3, 0xc4, 0xda, 0x77, 0xb2, 0x9c, 0xba, 0x39, 0x53, 0x82, 0x93, 0xd9, |
| 282 | 0xb8, 0x9f, 0x73, 0x2d, 0x27, 0x06, 0x15, 0xa8, 0xcb, 0x6d, 0x1d, 0xf2, 0xb1, 0x54, 0xbb, |
| 283 | 0x62, 0xf1, |
| 284 | ]; |
| 285 | |
| 286 | static SAMPLE_BCC_TEST_VECTOR: &[u8] = &[ |
Alan Stokes | 7cdcf99 | 2022-05-24 07:42:24 +0000 | [diff] [blame] | 287 | 0x84, 0xa5, 0x01, 0x01, 0x03, 0x27, 0x04, 0x81, 0x02, 0x20, 0x06, 0x21, 0x58, 0x20, 0x3e, |
| 288 | 0x85, 0xe5, 0x72, 0x75, 0x55, 0xe5, 0x1e, 0xe7, 0xf3, 0x35, 0x94, 0x8e, 0xbb, 0xbd, 0x74, |
| 289 | 0x1e, 0x1d, 0xca, 0x49, 0x9c, 0x97, 0x39, 0x77, 0x06, 0xd3, 0xc8, 0x6e, 0x8b, 0xd7, 0x33, |
| 290 | 0xf9, 0x84, 0x43, 0xa1, 0x01, 0x27, 0xa0, 0x59, 0x01, 0x8a, 0xa9, 0x01, 0x78, 0x28, 0x34, |
| 291 | 0x32, 0x64, 0x38, 0x38, 0x36, 0x34, 0x66, 0x39, 0x37, 0x62, 0x36, 0x35, 0x34, 0x37, 0x61, |
| 292 | 0x35, 0x30, 0x63, 0x31, 0x65, 0x30, 0x61, 0x37, 0x34, 0x39, 0x66, 0x38, 0x65, 0x66, 0x38, |
| 293 | 0x62, 0x38, 0x31, 0x65, 0x63, 0x36, 0x32, 0x61, 0x66, 0x02, 0x78, 0x28, 0x31, 0x66, 0x36, |
| 294 | 0x39, 0x36, 0x66, 0x30, 0x37, 0x32, 0x35, 0x32, 0x66, 0x32, 0x39, 0x65, 0x39, 0x33, 0x66, |
| 295 | 0x65, 0x34, 0x64, 0x65, 0x31, 0x39, 0x65, 0x65, 0x33, 0x32, 0x63, 0x64, 0x38, 0x31, 0x64, |
| 296 | 0x63, 0x34, 0x30, 0x34, 0x65, 0x37, 0x36, 0x3a, 0x00, 0x47, 0x44, 0x50, 0x58, 0x40, 0x16, |
| 297 | 0x48, 0xf2, 0x55, 0x53, 0x23, 0xdd, 0x15, 0x2e, 0x83, 0x38, 0xc3, 0x64, 0x38, 0x63, 0x26, |
| 298 | 0x0f, 0xcf, 0x5b, 0xd1, 0x3a, 0xd3, 0x40, 0x3e, 0x23, 0xf8, 0x34, 0x4c, 0x6d, 0xa2, 0xbe, |
| 299 | 0x25, 0x1c, 0xb0, 0x29, 0xe8, 0xc3, 0xfb, 0xb8, 0x80, 0xdc, 0xb1, 0xd2, 0xb3, 0x91, 0x4d, |
| 300 | 0xd3, 0xfb, 0x01, 0x0f, 0xe4, 0xe9, 0x46, 0xa2, 0xc0, 0x26, 0x57, 0x5a, 0xba, 0x30, 0xf7, |
| 301 | 0x15, 0x98, 0x14, 0x3a, 0x00, 0x47, 0x44, 0x53, 0x56, 0xa3, 0x3a, 0x00, 0x01, 0x11, 0x71, |
| 302 | 0x63, 0x41, 0x42, 0x4c, 0x3a, 0x00, 0x01, 0x11, 0x72, 0x01, 0x3a, 0x00, 0x01, 0x11, 0x73, |
| 303 | 0xf6, 0x3a, 0x00, 0x47, 0x44, 0x52, 0x58, 0x40, 0x47, 0xae, 0x42, 0x27, 0x4c, 0xcb, 0x65, |
| 304 | 0x4d, 0xee, 0x74, 0x2d, 0x05, 0x78, 0x2a, 0x08, 0x2a, 0xa5, 0xf0, 0xcf, 0xea, 0x3e, 0x60, |
| 305 | 0xee, 0x97, 0x11, 0x4b, 0x5b, 0xe6, 0x05, 0x0c, 0xe8, 0x90, 0xf5, 0x22, 0xc4, 0xc6, 0x67, |
| 306 | 0x7a, 0x22, 0x27, 0x17, 0xb3, 0x79, 0xcc, 0x37, 0x64, 0x5e, 0x19, 0x4f, 0x96, 0x37, 0x67, |
| 307 | 0x3c, 0xd0, 0xc5, 0xed, 0x0f, 0xdd, 0xe7, 0x2e, 0x4f, 0x70, 0x97, 0x30, 0x3a, 0x00, 0x47, |
| 308 | 0x44, 0x54, 0x58, 0x40, 0xf9, 0x00, 0x9d, 0xc2, 0x59, 0x09, 0xe0, 0xb6, 0x98, 0xbd, 0xe3, |
| 309 | 0x97, 0x4a, 0xcb, 0x3c, 0xe7, 0x6b, 0x24, 0xc3, 0xe4, 0x98, 0xdd, 0xa9, 0x6a, 0x41, 0x59, |
| 310 | 0x15, 0xb1, 0x23, 0xe6, 0xc8, 0xdf, 0xfb, 0x52, 0xb4, 0x52, 0xc1, 0xb9, 0x61, 0xdd, 0xbc, |
| 311 | 0x5b, 0x37, 0x0e, 0x12, 0x12, 0xb2, 0xfd, 0xc1, 0x09, 0xb0, 0xcf, 0x33, 0x81, 0x4c, 0xc6, |
| 312 | 0x29, 0x1b, 0x99, 0xea, 0xae, 0xfd, 0xaa, 0x0d, 0x3a, 0x00, 0x47, 0x44, 0x56, 0x41, 0x01, |
| 313 | 0x3a, 0x00, 0x47, 0x44, 0x57, 0x58, 0x2d, 0xa5, 0x01, 0x01, 0x03, 0x27, 0x04, 0x81, 0x02, |
| 314 | 0x20, 0x06, 0x21, 0x58, 0x20, 0xb1, 0x02, 0xcc, 0x2c, 0xb2, 0x6a, 0x3b, 0xe9, 0xc1, 0xd3, |
| 315 | 0x95, 0x10, 0xa0, 0xe1, 0xff, 0x51, 0xde, 0x57, 0xd5, 0x65, 0x28, 0xfd, 0x7f, 0xeb, 0xd4, |
| 316 | 0xca, 0x15, 0xf3, 0xca, 0xdf, 0x37, 0x88, 0x3a, 0x00, 0x47, 0x44, 0x58, 0x41, 0x20, 0x58, |
| 317 | 0x40, 0x58, 0xd8, 0x03, 0x24, 0x53, 0x60, 0x57, 0xa9, 0x09, 0xfa, 0xab, 0xdc, 0x57, 0x1e, |
| 318 | 0xf0, 0xe5, 0x1e, 0x51, 0x6f, 0x9e, 0xa3, 0x42, 0xe6, 0x6a, 0x8c, 0xaa, 0xad, 0x08, 0x48, |
| 319 | 0xde, 0x7f, 0x4f, 0x6e, 0x2f, 0x7f, 0x39, 0x6c, 0xa1, 0xf8, 0x42, 0x71, 0xfe, 0x17, 0x3d, |
| 320 | 0xca, 0x31, 0x83, 0x92, 0xed, 0xbb, 0x40, 0xb8, 0x10, 0xe0, 0xf2, 0x5a, 0x99, 0x53, 0x38, |
| 321 | 0x46, 0x33, 0x97, 0x78, 0x05, 0x84, 0x43, 0xa1, 0x01, 0x27, 0xa0, 0x59, 0x01, 0x8a, 0xa9, |
| 322 | 0x01, 0x78, 0x28, 0x31, 0x66, 0x36, 0x39, 0x36, 0x66, 0x30, 0x37, 0x32, 0x35, 0x32, 0x66, |
| 323 | 0x32, 0x39, 0x65, 0x39, 0x33, 0x66, 0x65, 0x34, 0x64, 0x65, 0x31, 0x39, 0x65, 0x65, 0x33, |
| 324 | 0x32, 0x63, 0x64, 0x38, 0x31, 0x64, 0x63, 0x34, 0x30, 0x34, 0x65, 0x37, 0x36, 0x02, 0x78, |
| 325 | 0x28, 0x32, 0x35, 0x39, 0x34, 0x38, 0x39, 0x65, 0x36, 0x39, 0x37, 0x34, 0x38, 0x37, 0x30, |
| 326 | 0x35, 0x64, 0x65, 0x33, 0x65, 0x32, 0x66, 0x34, 0x34, 0x32, 0x36, 0x37, 0x65, 0x61, 0x34, |
| 327 | 0x39, 0x33, 0x38, 0x66, 0x66, 0x36, 0x61, 0x35, 0x37, 0x32, 0x35, 0x3a, 0x00, 0x47, 0x44, |
| 328 | 0x50, 0x58, 0x40, 0xa4, 0x0c, 0xcb, 0xc1, 0xbf, 0xfa, 0xcc, 0xfd, 0xeb, 0xf4, 0xfc, 0x43, |
| 329 | 0x83, 0x7f, 0x46, 0x8d, 0xd8, 0xd8, 0x14, 0xc1, 0x96, 0x14, 0x1f, 0x6e, 0xb3, 0xa0, 0xd9, |
| 330 | 0x56, 0xb3, 0xbf, 0x2f, 0xfa, 0x88, 0x70, 0x11, 0x07, 0x39, 0xa4, 0xd2, 0xa9, 0x6b, 0x18, |
| 331 | 0x28, 0xe8, 0x29, 0x20, 0x49, 0x0f, 0xbb, 0x8d, 0x08, 0x8c, 0xc6, 0x54, 0xe9, 0x71, 0xd2, |
| 332 | 0x7e, 0xa4, 0xfe, 0x58, 0x7f, 0xd3, 0xc7, 0x3a, 0x00, 0x47, 0x44, 0x53, 0x56, 0xa3, 0x3a, |
| 333 | 0x00, 0x01, 0x11, 0x71, 0x63, 0x41, 0x56, 0x42, 0x3a, 0x00, 0x01, 0x11, 0x72, 0x01, 0x3a, |
| 334 | 0x00, 0x01, 0x11, 0x73, 0xf6, 0x3a, 0x00, 0x47, 0x44, 0x52, 0x58, 0x40, 0x93, 0x17, 0xe1, |
| 335 | 0x11, 0x27, 0x59, 0xd0, 0xef, 0x75, 0x0b, 0x2b, 0x1c, 0x0f, 0x5f, 0x52, 0xc3, 0x29, 0x23, |
| 336 | 0xb5, 0x2a, 0xe6, 0x12, 0x72, 0x6f, 0x39, 0x86, 0x65, 0x2d, 0xf2, 0xe4, 0xe7, 0xd0, 0xaf, |
| 337 | 0x0e, 0xa7, 0x99, 0x16, 0x89, 0x97, 0x21, 0xf7, 0xdc, 0x89, 0xdc, 0xde, 0xbb, 0x94, 0x88, |
| 338 | 0x1f, 0xda, 0xe2, 0xf3, 0xe0, 0x54, 0xf9, 0x0e, 0x29, 0xb1, 0xbd, 0xe1, 0x0c, 0x0b, 0xd7, |
| 339 | 0xf6, 0x3a, 0x00, 0x47, 0x44, 0x54, 0x58, 0x40, 0xb2, 0x69, 0x05, 0x48, 0x56, 0xb5, 0xfa, |
| 340 | 0x55, 0x6f, 0xac, 0x56, 0xd9, 0x02, 0x35, 0x2b, 0xaa, 0x4c, 0xba, 0x28, 0xdd, 0x82, 0x3a, |
| 341 | 0x86, 0xf5, 0xd4, 0xc2, 0xf1, 0xf9, 0x35, 0x7d, 0xe4, 0x43, 0x13, 0xbf, 0xfe, 0xd3, 0x36, |
| 342 | 0xd8, 0x1c, 0x12, 0x78, 0x5c, 0x9c, 0x3e, 0xf6, 0x66, 0xef, 0xab, 0x3d, 0x0f, 0x89, 0xa4, |
| 343 | 0x6f, 0xc9, 0x72, 0xee, 0x73, 0x43, 0x02, 0x8a, 0xef, 0xbc, 0x05, 0x98, 0x3a, 0x00, 0x47, |
| 344 | 0x44, 0x56, 0x41, 0x01, 0x3a, 0x00, 0x47, 0x44, 0x57, 0x58, 0x2d, 0xa5, 0x01, 0x01, 0x03, |
| 345 | 0x27, 0x04, 0x81, 0x02, 0x20, 0x06, 0x21, 0x58, 0x20, 0x96, 0x6d, 0x96, 0x42, 0xda, 0x64, |
| 346 | 0x51, 0xad, 0xfa, 0x00, 0xbc, 0xbc, 0x95, 0x8a, 0xb0, 0xb9, 0x76, 0x01, 0xe6, 0xbd, 0xc0, |
| 347 | 0x26, 0x79, 0x26, 0xfc, 0x0f, 0x1d, 0x87, 0x65, 0xf1, 0xf3, 0x99, 0x3a, 0x00, 0x47, 0x44, |
| 348 | 0x58, 0x41, 0x20, 0x58, 0x40, 0x10, 0x7f, 0x77, 0xad, 0x70, 0xbd, 0x52, 0x81, 0x28, 0x8d, |
| 349 | 0x24, 0x81, 0xb4, 0x3f, 0x21, 0x68, 0x9f, 0xc3, 0x80, 0x68, 0x86, 0x55, 0xfb, 0x2e, 0x6d, |
| 350 | 0x96, 0xe1, 0xe1, 0xb7, 0x28, 0x8d, 0x63, 0x85, 0xba, 0x2a, 0x01, 0x33, 0x87, 0x60, 0x63, |
| 351 | 0xbb, 0x16, 0x3f, 0x2f, 0x3d, 0xf4, 0x2d, 0x48, 0x5b, 0x87, 0xed, 0xda, 0x34, 0xeb, 0x9c, |
| 352 | 0x4d, 0x14, 0xac, 0x65, 0xf4, 0xfa, 0xef, 0x45, 0x0b, 0x84, 0x43, 0xa1, 0x01, 0x27, 0xa0, |
| 353 | 0x59, 0x01, 0x8f, 0xa9, 0x01, 0x78, 0x28, 0x32, 0x35, 0x39, 0x34, 0x38, 0x39, 0x65, 0x36, |
| 354 | 0x39, 0x37, 0x34, 0x38, 0x37, 0x30, 0x35, 0x64, 0x65, 0x33, 0x65, 0x32, 0x66, 0x34, 0x34, |
| 355 | 0x32, 0x36, 0x37, 0x65, 0x61, 0x34, 0x39, 0x33, 0x38, 0x66, 0x66, 0x36, 0x61, 0x35, 0x37, |
| 356 | 0x32, 0x35, 0x02, 0x78, 0x28, 0x35, 0x64, 0x34, 0x65, 0x64, 0x37, 0x66, 0x34, 0x31, 0x37, |
| 357 | 0x61, 0x39, 0x35, 0x34, 0x61, 0x31, 0x38, 0x31, 0x34, 0x30, 0x37, 0x62, 0x35, 0x38, 0x38, |
| 358 | 0x35, 0x61, 0x66, 0x64, 0x37, 0x32, 0x61, 0x35, 0x62, 0x66, 0x34, 0x30, 0x64, 0x61, 0x36, |
| 359 | 0x3a, 0x00, 0x47, 0x44, 0x50, 0x58, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 360 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 361 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 362 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
Alan Stokes | 7cdcf99 | 2022-05-24 07:42:24 +0000 | [diff] [blame] | 363 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x47, 0x44, |
| 364 | 0x53, 0x58, 0x1a, 0xa3, 0x3a, 0x00, 0x01, 0x11, 0x71, 0x67, 0x41, 0x6e, 0x64, 0x72, 0x6f, |
| 365 | 0x69, 0x64, 0x3a, 0x00, 0x01, 0x11, 0x72, 0x0c, 0x3a, 0x00, 0x01, 0x11, 0x73, 0xf6, 0x3a, |
| 366 | 0x00, 0x47, 0x44, 0x52, 0x58, 0x40, 0x26, 0x1a, 0xbd, 0x26, 0xd8, 0x37, 0x8f, 0x4a, 0xf2, |
| 367 | 0x9e, 0x49, 0x4d, 0x93, 0x23, 0xc4, 0x6e, 0x02, 0xda, 0xe0, 0x00, 0x02, 0xe7, 0xed, 0x29, |
| 368 | 0xdf, 0x2b, 0xb3, 0x69, 0xf3, 0x55, 0x0e, 0x4c, 0x22, 0xdc, 0xcf, 0xf5, 0x92, 0xc9, 0xfa, |
| 369 | 0x78, 0x98, 0xf1, 0x0e, 0x55, 0x5f, 0xf4, 0x45, 0xed, 0xc0, 0x0a, 0x72, 0x2a, 0x7a, 0x3a, |
| 370 | 0xd2, 0xb1, 0xf7, 0x76, 0xfe, 0x2a, 0x6b, 0x7b, 0x2a, 0x53, 0x3a, 0x00, 0x47, 0x44, 0x54, |
| 371 | 0x58, 0x40, 0x04, 0x25, 0x5d, 0x60, 0x5f, 0x5c, 0x45, 0x0d, 0xf2, 0x9a, 0x6e, 0x99, 0x30, |
| 372 | 0x03, 0xb8, 0xd6, 0xe1, 0x99, 0x71, 0x1b, 0xf8, 0x44, 0xfa, 0xb5, 0x31, 0x79, 0x1c, 0x37, |
| 373 | 0x68, 0x4e, 0x1d, 0xc0, 0x24, 0x74, 0x68, 0xf8, 0x80, 0x20, 0x3e, 0x44, 0xb1, 0x43, 0xd2, |
| 374 | 0x9c, 0xfc, 0x12, 0x9e, 0x77, 0x0a, 0xde, 0x29, 0x24, 0xff, 0x2e, 0xfa, 0xc7, 0x10, 0xd5, |
| 375 | 0x73, 0xd4, 0xc6, 0xdf, 0x62, 0x9f, 0x3a, 0x00, 0x47, 0x44, 0x56, 0x41, 0x01, 0x3a, 0x00, |
| 376 | 0x47, 0x44, 0x57, 0x58, 0x2d, 0xa5, 0x01, 0x01, 0x03, 0x27, 0x04, 0x81, 0x02, 0x20, 0x06, |
| 377 | 0x21, 0x58, 0x20, 0xdb, 0xe7, 0x5b, 0x3f, 0xa3, 0x42, 0xb0, 0x9c, 0xf8, 0x40, 0x8c, 0xb0, |
| 378 | 0x9c, 0xf0, 0x0a, 0xaf, 0xdf, 0x6f, 0xe5, 0x09, 0x21, 0x11, 0x92, 0xe1, 0xf8, 0xc5, 0x09, |
| 379 | 0x02, 0x3d, 0x1f, 0xb7, 0xc5, 0x3a, 0x00, 0x47, 0x44, 0x58, 0x41, 0x20, 0x58, 0x40, 0xc4, |
| 380 | 0xc1, 0xd7, 0x1c, 0x2d, 0x26, 0x89, 0x22, 0xcf, 0xa6, 0x99, 0x77, 0x30, 0x84, 0x86, 0x27, |
| 381 | 0x59, 0x8f, 0xd8, 0x08, 0x75, 0xe0, 0xb2, 0xef, 0xf9, 0xfa, 0xa5, 0x40, 0x8c, 0xd3, 0xeb, |
| 382 | 0xbb, 0xda, 0xf2, 0xc8, 0xae, 0x41, 0x22, 0x50, 0x9c, 0xe8, 0xb2, 0x9c, 0x9b, 0x3f, 0x8a, |
| 383 | 0x78, 0x76, 0xab, 0xd0, 0xbe, 0xfc, 0xe4, 0x79, 0xcb, 0x1b, 0x2b, 0xaa, 0x4d, 0xdd, 0x15, |
| 384 | 0x61, 0x42, 0x06, |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 385 | ]; |
| 386 | |
| 387 | // This test invokes make_sample_bcc_and_cdis and compares the result bitwise to the target |
| 388 | // vectors. The function uses main_flow, bcc_main_flow, format_config_descriptor, |
| 389 | // derive_cdi_private_key_seed, and keypair_from_seed. This test is sensitive to errors |
| 390 | // and changes in any of those functions. |
| 391 | #[test] |
| 392 | fn main_flow_and_bcc_main_flow() { |
Alice Wang | f4bd1c6 | 2023-02-08 08:38:44 +0000 | [diff] [blame] | 393 | let dice_artifacts = make_sample_bcc_and_cdis().unwrap(); |
| 394 | assert_eq!(&dice_artifacts.cdi_values.cdi_attest, SAMPLE_CDI_ATTEST_TEST_VECTOR); |
| 395 | assert_eq!(&dice_artifacts.cdi_values.cdi_seal, SAMPLE_CDI_SEAL_TEST_VECTOR); |
| 396 | assert_eq!(&dice_artifacts.bcc, SAMPLE_BCC_TEST_VECTOR); |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 397 | } |
Janis Danisevskis | db78b77 | 2021-11-29 17:59:50 -0800 | [diff] [blame] | 398 | } |