| // Copyright 2024 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef CHROME_BROWSER_WEBAUTHN_TEST_UTIL_H_ |
| #define CHROME_BROWSER_WEBAUTHN_TEST_UTIL_H_ |
| |
| #include <memory> |
| #include <utility> |
| |
| #include "base/files/file_path.h" |
| #include "base/process/process.h" |
| #include "base/time/time.h" |
| #include "device/fido/enclave/constants.h" |
| #include "google_apis/gaia/gaia_id.h" |
| |
| static constexpr int32_t kSecretVersion = 417; |
| static constexpr uint8_t kSecurityDomainSecret[32] = {}; |
| static constexpr char kSyncEmail[] = "user1@gmail.com"; |
| static constexpr char kSyncEmailLocalPartOnly[] = "user1"; |
| // This value is derived by the Sync testing code from `kSyncEmail` |
| // but is needed directly in enclave tests in order to simulate the `StoreKeys` |
| // calls to the `EnclaveManager`. |
| static constexpr GaiaId::Literal kSyncGaiaId("gaia_id_for_user1_gmail.com"); |
| // Protobuf generated by printing one generated by an enclave using |
| // `kSecurityDomainSecret`. |
| static constexpr uint8_t kTestProtobuf[] = { |
| 0x0A, 0x10, 0x8E, 0x48, 0x4B, 0x1C, 0x4F, 0xF9, 0x01, 0x14, 0xEF, 0xEA, |
| 0xB3, 0x18, 0x40, 0x21, 0xEB, 0xF9, 0x12, 0x10, 0x48, 0x74, 0x02, 0x2C, |
| 0xC5, 0x85, 0x38, 0xDA, 0x22, 0xD8, 0x8C, 0xAF, 0xD4, 0x05, 0x29, 0x84, |
| 0x1A, 0x0F, 0x77, 0x77, 0x77, 0x2E, 0x65, 0x78, 0x61, 0x6D, 0x70, 0x6C, |
| 0x65, 0x2E, 0x63, 0x6F, 0x6D, 0x22, 0x01, 0x00, 0x30, 0xE4, 0xFA, 0x86, |
| 0x8D, 0xAC, 0x86, 0xDD, 0x17, 0x3A, 0x03, 0x66, 0x6F, 0x6F, 0x42, 0x00, |
| 0x62, 0xCB, 0x01, 0x30, 0x89, 0x28, 0x56, 0xC4, 0x9C, 0xC4, 0xAD, 0x19, |
| 0x4D, 0x4B, 0x91, 0x12, 0xD4, 0xA0, 0x05, 0xF0, 0xA4, 0xCA, 0x87, 0x66, |
| 0x4C, 0x9E, 0x49, 0x58, 0xED, 0x08, 0x92, 0xB9, 0x5C, 0x5C, 0xCD, 0x7D, |
| 0xA7, 0xD4, 0xEA, 0x54, 0xE9, 0x7E, 0xF2, 0x93, 0xDA, 0x17, 0x43, 0x7F, |
| 0x41, 0x15, 0x25, 0x94, 0xB8, 0x04, 0x08, 0xAD, 0xE7, 0x67, 0xFA, 0xE2, |
| 0x38, 0xD3, 0x37, 0xCE, 0x68, 0x1C, 0x2C, 0x82, 0xCA, 0xED, 0x8D, 0x10, |
| 0x32, 0x31, 0xD9, 0xED, 0x7F, 0x51, 0x74, 0x66, 0x63, 0x14, 0x12, 0xD3, |
| 0xA1, 0xC0, 0xFE, 0x52, 0xA3, 0x07, 0x01, 0x58, 0xDD, 0x3F, 0xD4, 0x97, |
| 0xD8, 0xFA, 0x7F, 0x9A, 0xB2, 0xC1, 0x65, 0x36, 0xE2, 0xBE, 0xDF, 0x00, |
| 0xFB, 0xAC, 0x59, 0xFE, 0x93, 0x25, 0x18, 0xA3, 0x92, 0xBF, 0x06, 0x8E, |
| 0x0F, 0x2E, 0xD6, 0xE8, 0xFE, 0xCD, 0xE5, 0x76, 0xB8, 0x92, 0x3D, 0xB1, |
| 0x42, 0xE9, 0xBB, 0x54, 0x36, 0x99, 0x5C, 0x21, 0xB7, 0x63, 0x33, 0x20, |
| 0x8E, 0x93, 0xAA, 0x00, 0x83, 0xC6, 0xCC, 0x23, 0xAD, 0x63, 0x2B, 0x34, |
| 0xAA, 0x4F, 0x8E, 0x9B, 0xFA, 0x40, 0x0E, 0xDB, 0x30, 0x37, 0x58, 0xE4, |
| 0x60, 0xA2, 0xDF, 0x99, 0x85, 0x4B, 0x5C, 0xDD, 0x44, 0x23, 0x12, 0x64, |
| 0x4C, 0x50, 0x34, 0x9D, 0x24, 0x1B, 0x37, 0x40, 0xC5, 0xB5, 0xA1, 0x5A, |
| 0x70, 0x33, 0xF7, 0x80, 0x75, 0x1D, 0x22, 0x13, 0x37, 0xCD, 0x1F, 0x24, |
| 0x40, 0xDA, 0x70, 0xA1, 0x03}; |
| base::span<const uint8_t, 16> TestProtobufCredId(); |
| |
| base::span<const uint8_t, 1> TestProtobufUserId(); |
| |
| // Starts a test enclave service instance. Returns the Process instance and |
| // the port number on which the enclave is listening for connections. |
| // CHECKs on error. |
| std::pair<base::Process, uint16_t> StartWebAuthnEnclave(base::FilePath cwd); |
| |
| device::enclave::ScopedEnclaveOverride TestWebAuthnEnclaveIdentity( |
| uint16_t port); |
| |
| #endif // CHROME_BROWSER_WEBAUTHN_TEST_UTIL_H_ |