// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SYNC_NIGORI_KEYSTORE_KEYS_CRYPTOGRAPHER_H_ #define COMPONENTS_SYNC_NIGORI_KEYSTORE_KEYS_CRYPTOGRAPHER_H_ #include <memory> #include <string> #include <vector> #include "components/sync/nigori/nigori_key_bag.h" namespace sync_pb { class EncryptedData; class NigoriKey; } // namespace sync_pb namespace syncer { class CryptographerImpl; // Wrapper of CryptographerImpl, which contains only keystore keys and uses the // last one as the default encryption key. class KeystoreKeysCryptographer { … }; } // namespace syncer #endif // COMPONENTS_SYNC_NIGORI_KEYSTORE_KEYS_CRYPTOGRAPHER_H_