summaryrefslogtreecommitdiff
path: root/chromium/net/test/keychain_test_util_mac.h
blob: 6e4994753dc781fc48ffb20e79c17b5a6e619445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_TEST_KEYCHAIN_TEST_UTIL_MAC_H_
#define NET_TEST_KEYCHAIN_TEST_UTIL_MAC_H_

#include <Security/SecKeychain.h>

#include <string>

#include "base/files/scoped_temp_dir.h"
#include "base/mac/scoped_cftyperef.h"

namespace net {

class X509Certificate;

// Manages a temporary keychain.
class ScopedTestKeychain {
 public:
  ScopedTestKeychain();
  ~ScopedTestKeychain();

  // Initializes the temp dir and keychain, returning true on success.
  bool Initialize();

  // Returns the SecKeychainRef. Initialize() must have been called first.
  SecKeychainRef keychain() const { return keychain_.get(); }

 private:
  base::ScopedTempDir keychain_dir_;
  base::ScopedCFTypeRef<SecKeychainRef> keychain_;
};

// Import the |cert| and matching key in unencrypted |pkcs8| into |keychain|
// and return the SecIdentityRef for |cert| and its key.
base::ScopedCFTypeRef<SecIdentityRef> ImportCertAndKeyToKeychain(
    const X509Certificate* cert,
    const std::string pkcs8,
    SecKeychainRef keychain);

}  // namespace net

#endif  // NET_TEST_KEYCHAIN_TEST_UTIL_MAC_H_