diff --git a/brave/browser/api/brave_api_component_updater.cc b/brave/browser/api/brave_api_component_updater.cc index ff7bed353a..568688caf0 100644 --- a/brave/browser/api/brave_api_component_updater.cc +++ b/brave/browser/api/brave_api_component_updater.cc @@ -132,6 +132,9 @@ void ComponentUpdater::RegisterComponent(const std::string& component_id) { } else if (component_id == kEnpassId) { RegisterComponentForUpdate( kEnpassPublicKeyStr, registered_callback, ready_callback); + } else if (component_id == kBitwardenId) { + RegisterComponentForUpdate( + kBitwardenPublicKeyStr, registered_callback, ready_callback); } else if (component_id == kWidevineId) { brave::RegisterWidevineCdmComponent( g_browser_process->component_updater(), diff --git a/brave/browser/component_updater/default_extensions.h b/brave/browser/component_updater/default_extensions.h index c249cdd8c5..fe17703978 100644 --- a/brave/browser/component_updater/default_extensions.h +++ b/brave/browser/component_updater/default_extensions.h @@ -273,4 +273,49 @@ const std::string kEnpassPublicKeyStr( // NOLINT (const char *)kEnpassPublicKey, sizeof(kEnpassPublicKey)); const std::string kEnpassId("kmcfomidfpdkfieipokbalgegidffkal"); // NOLINT +// bitwarden +// Download: https://clients2.google.com/service/update2/crx?response=redirect&prodversion=52.0.2743.116&x=id%3Dnngceckbapebfimnlniiiahkandclblb%26uc // NOLINT +const uint8_t kBitwardenPublicKey[294] = { + 0x30, 0x82, 0x01, 0x22, 0x30, 0x0d, 0x06, 0x09, + 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, + 0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, + 0x30, 0x82, 0x01, 0x0a, 0x02, 0x82, 0x01, 0x01, + 0x00, 0x9a, 0xa2, 0x9b, 0xbe, 0xb7, 0xac, 0x87, + 0x25, 0xd1, 0xb8, 0xdd, 0xa0, 0x8a, 0x47, 0x91, + 0xd6, 0x27, 0x6a, 0x47, 0xa2, 0x8b, 0xd0, 0x38, + 0xbc, 0xf4, 0x96, 0x5c, 0x33, 0x20, 0xf8, 0x6e, + 0x32, 0x51, 0x65, 0x59, 0x90, 0x3b, 0xb6, 0xb3, + 0x9d, 0x21, 0x92, 0x00, 0xb2, 0x07, 0xcd, 0x20, + 0x14, 0x19, 0x8a, 0x1c, 0x51, 0x80, 0x4d, 0x0c, + 0xe3, 0xf9, 0x40, 0x08, 0x48, 0x9b, 0x15, 0xf2, + 0x43, 0x5a, 0x86, 0xf3, 0xe8, 0x28, 0x5e, 0xcf, + 0x77, 0xbf, 0xd1, 0xb3, 0xac, 0xd2, 0x44, 0x4d, + 0xd5, 0x6e, 0x08, 0x48, 0x6a, 0x06, 0x08, 0x02, + 0xe3, 0xf0, 0xc5, 0x69, 0xba, 0xf2, 0x25, 0x90, + 0xe2, 0x2a, 0xf6, 0x76, 0x26, 0x5d, 0x03, 0x33, + 0xb3, 0x2c, 0x59, 0xda, 0x32, 0x6d, 0x93, 0xf0, + 0xae, 0x3e, 0xf4, 0x57, 0x76, 0x89, 0xfe, 0x75, + 0x4d, 0x38, 0xc9, 0x1f, 0xf3, 0xaf, 0x2c, 0x70, + 0xd4, 0xcc, 0x96, 0x2c, 0x22, 0xb4, 0x2a, 0xaa, + 0x8d, 0x3e, 0x5b, 0x69, 0x30, 0x0d, 0xb0, 0x6d, + 0x03, 0x91, 0x95, 0x90, 0x13, 0x10, 0xf8, 0x95, + 0x25, 0xf3, 0x49, 0x91, 0xc7, 0xf4, 0xc1, 0x0e, + 0xf2, 0xad, 0x22, 0x67, 0xb4, 0x51, 0x94, 0xdb, + 0x86, 0x44, 0x10, 0x24, 0x66, 0x03, 0x55, 0xf0, + 0x5c, 0x19, 0x46, 0xc3, 0xca, 0x9b, 0xfa, 0xf0, + 0x43, 0xd7, 0x72, 0xdd, 0x5a, 0x60, 0x2d, 0xc9, + 0x8b, 0xa7, 0x91, 0xa2, 0x32, 0xdf, 0xa4, 0x00, + 0x49, 0xdc, 0xa8, 0xa0, 0x24, 0xb9, 0x16, 0x27, + 0x85, 0x55, 0xd7, 0x06, 0xc2, 0xaa, 0x23, 0x26, + 0x13, 0x32, 0x31, 0xd2, 0x2e, 0x42, 0xe7, 0xa5, + 0xf1, 0x72, 0x4b, 0x23, 0x8f, 0x2c, 0x17, 0x52, + 0xeb, 0x5e, 0xe2, 0xfc, 0xf1, 0x8d, 0x88, 0xff, + 0xcc, 0x4f, 0xa5, 0xf2, 0xeb, 0x3f, 0xff, 0xbf, + 0x93, 0x68, 0xcd, 0x48, 0x1a, 0x01, 0x9e, 0x20, + 0x25, 0x02, 0x03, 0x01, 0x00, 0x01 +}; +const std::string kBitwardenPublicKeyStr( // NOLINT + (const char *)kBitwardenPublicKey, sizeof(kBitwardenPublicKey)); +const std::string kBitwardenId("nngceckbapebfimnlniiiahkandclblb"); // NOLINT + #endif // BRAVE_BROWSER_COMPONENT_UPDATER_DEFAULT_EXTENSIONS_H_