Update V8 to version 3.30.4 (based on bleeding_edge revision r24443)
[chromium-blink-merge.git] / components / ownership / owner_key_util_impl.h
blob1bd8c2315b2fc02f387b8450effcdbb174ad3733
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_IMPL_H_
6 #define COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_IMPL_H_
8 #include "base/compiler_specific.h"
9 #include "base/files/file_path.h"
10 #include "base/macros.h"
11 #include "components/ownership/owner_key_util.h"
12 #include "components/ownership/ownership_export.h"
14 namespace ownership {
16 // Implementation of OwnerKeyUtil which imports public part of the
17 // owner key from a filesystem.
18 class OWNERSHIP_EXPORT OwnerKeyUtilImpl : public OwnerKeyUtil {
19 public:
20 explicit OwnerKeyUtilImpl(const base::FilePath& public_key_file);
22 // OwnerKeyUtil implementation:
23 virtual bool ImportPublicKey(std::vector<uint8>* output) override;
24 #if defined(USE_NSS)
25 virtual crypto::RSAPrivateKey* FindPrivateKeyInSlot(
26 const std::vector<uint8>& key,
27 PK11SlotInfo* slot) override;
28 #endif // defined(USE_NSS)
29 virtual bool IsPublicKeyPresent() override;
31 private:
32 virtual ~OwnerKeyUtilImpl();
34 // The file that holds the public key.
35 base::FilePath public_key_file_;
37 DISALLOW_COPY_AND_ASSIGN(OwnerKeyUtilImpl);
40 } // namespace ownership
42 #endif // COMPONENTS_OWNERSHIP_OWNER_KEY_UTIL_IMPL_H_