Makes the view manager client lib remove children when embedding
[chromium-blink-merge.git] / crypto / nss_key_util.h
blob12b948d25bb2a269d432a1d57a4baa219902e2d9
1 // Copyright 2015 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 CRYPTO_NSS_KEY_UTIL_H_
6 #define CRYPTO_NSS_KEY_UTIL_H_
8 #include <stdint.h>
10 #include <vector>
12 #include "build/build_config.h"
13 #include "crypto/crypto_export.h"
14 #include "crypto/scoped_nss_types.h"
16 typedef struct PK11SlotInfoStr PK11SlotInfo;
18 namespace crypto {
20 // Generates a new RSA keypair of size |num_bits| in |slot|. Returns true on
21 // success and false on failure. If |permanent| is true, the resulting key is
22 // permanent and is not exportable in plaintext form.
23 CRYPTO_EXPORT bool GenerateRSAKeyPairNSS(
24 PK11SlotInfo* slot,
25 uint16_t num_bits,
26 bool permanent,
27 ScopedSECKEYPublicKey* out_public_key,
28 ScopedSECKEYPrivateKey* out_private_key);
30 // Imports a private key from |input| into |slot|. |input| is interpreted as a
31 // DER-encoded PrivateKeyInfo block from PKCS #8. Returns nullptr on error. If
32 // |permanent| is true, the resulting key is permanent and is not exportable in
33 // plaintext form.
34 CRYPTO_EXPORT ScopedSECKEYPrivateKey
35 ImportNSSKeyFromPrivateKeyInfo(PK11SlotInfo* slot,
36 const std::vector<uint8_t>& input,
37 bool permanent);
39 #if defined(USE_NSS_CERTS)
41 // Decodes |input| as a DER-encoded X.509 SubjectPublicKeyInfo and searches for
42 // the private key half in the key database. Returns the private key on success
43 // or nullptr on error.
44 CRYPTO_EXPORT ScopedSECKEYPrivateKey
45 FindNSSKeyFromPublicKeyInfo(const std::vector<uint8_t>& input);
47 // Decodes |input| as a DER-encoded X.509 SubjectPublicKeyInfo and searches for
48 // the private key half in the slot specified by |slot|. Returns the private key
49 // on success or nullptr on error.
50 CRYPTO_EXPORT ScopedSECKEYPrivateKey
51 FindNSSKeyFromPublicKeyInfoInSlot(const std::vector<uint8_t>& input,
52 PK11SlotInfo* slot);
54 #endif // defined(USE_NSS_CERTS)
56 } // namespace crypto
58 #endif // CRYPTO_NSS_KEY_UTIL_H_