• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #ifndef CRYPTO_FEATURES_H_
6 #define CRYPTO_FEATURES_H_
7 
8 #include "base/feature_list.h"
9 #include "crypto/crypto_export.h"
10 
11 namespace crypto::features {
12 
13 // Enable encryption for process bound strings, if supported by the platform.
14 CRYPTO_EXPORT BASE_DECLARE_FEATURE(kProcessBoundStringEncryption);
15 
16 }  // namespace crypto::features
17 
18 #endif  // CRYPTO_FEATURES_H_
19