1 // Copyright 2024 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "crypto/features.h" 6 7 #include "base/feature_list.h" 8 #include "build/build_config.h" 9 10 namespace crypto { 11 12 #if BUILDFLAG(IS_MAC) 13 // Enabled in M124. Remove in or after M127. 14 BASE_FEATURE(kEnableMacUnexportableKeys, 15 "EnableMacUnexportableKeys", 16 base::FEATURE_ENABLED_BY_DEFAULT); 17 #endif // BUILDFLAG(IS_MAC) 18 19 } // namespace crypto 20