Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: crypto/rsa_private_key.h

Issue 7491061: Rename CRYPTO_API to CRYPTO_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « crypto/openpgp_symmetric_encryption.h ('k') | crypto/secure_hash.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CRYPTO_RSA_PRIVATE_KEY_H_ 5 #ifndef CRYPTO_RSA_PRIVATE_KEY_H_
6 #define CRYPTO_RSA_PRIVATE_KEY_H_ 6 #define CRYPTO_RSA_PRIVATE_KEY_H_
7 #pragma once 7 #pragma once
8 8
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
11 #if defined(USE_OPENSSL) 11 #if defined(USE_OPENSSL)
12 // Forward declaration for openssl/*.h 12 // Forward declaration for openssl/*.h
13 typedef struct evp_pkey_st EVP_PKEY; 13 typedef struct evp_pkey_st EVP_PKEY;
14 #elif defined(USE_NSS) 14 #elif defined(USE_NSS)
15 // Forward declaration. 15 // Forward declaration.
16 struct SECKEYPrivateKeyStr; 16 struct SECKEYPrivateKeyStr;
17 struct SECKEYPublicKeyStr; 17 struct SECKEYPublicKeyStr;
18 #elif defined(OS_MACOSX) 18 #elif defined(OS_MACOSX)
19 #include <Security/cssm.h> 19 #include <Security/cssm.h>
20 #endif 20 #endif
21 21
22 #include <list> 22 #include <list>
23 #include <vector> 23 #include <vector>
24 24
25 #include "base/basictypes.h" 25 #include "base/basictypes.h"
26 #include "crypto/crypto_api.h" 26 #include "crypto/crypto_export.h"
27 27
28 #if defined(OS_WIN) 28 #if defined(OS_WIN)
29 #include "crypto/scoped_capi_types.h" 29 #include "crypto/scoped_capi_types.h"
30 #endif 30 #endif
31 #if defined(USE_NSS) 31 #if defined(USE_NSS)
32 #include "base/gtest_prod_util.h" 32 #include "base/gtest_prod_util.h"
33 #endif 33 #endif
34 34
35 namespace crypto { 35 namespace crypto {
36 36
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 std::vector<uint8> exponent1_; 164 std::vector<uint8> exponent1_;
165 std::vector<uint8> exponent2_; 165 std::vector<uint8> exponent2_;
166 std::vector<uint8> coefficient_; 166 std::vector<uint8> coefficient_;
167 167
168 DISALLOW_COPY_AND_ASSIGN(PrivateKeyInfoCodec); 168 DISALLOW_COPY_AND_ASSIGN(PrivateKeyInfoCodec);
169 }; 169 };
170 170
171 // Encapsulates an RSA private key. Can be used to generate new keys, export 171 // Encapsulates an RSA private key. Can be used to generate new keys, export
172 // keys to other formats, or to extract a public key. 172 // keys to other formats, or to extract a public key.
173 // TODO(hclam): This class should be ref-counted so it can be reused easily. 173 // TODO(hclam): This class should be ref-counted so it can be reused easily.
174 class CRYPTO_API RSAPrivateKey { 174 class CRYPTO_EXPORT RSAPrivateKey {
175 public: 175 public:
176 ~RSAPrivateKey(); 176 ~RSAPrivateKey();
177 177
178 // Create a new random instance. Can return NULL if initialization fails. 178 // Create a new random instance. Can return NULL if initialization fails.
179 static RSAPrivateKey* Create(uint16 num_bits); 179 static RSAPrivateKey* Create(uint16 num_bits);
180 180
181 // Create a new random instance. Can return NULL if initialization fails. 181 // Create a new random instance. Can return NULL if initialization fails.
182 // The created key is permanent and is not exportable in plaintext form. 182 // The created key is permanent and is not exportable in plaintext form.
183 // 183 //
184 // NOTE: Currently only available if USE_NSS is defined. 184 // NOTE: Currently only available if USE_NSS is defined.
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 CSSM_KEY key_; 265 CSSM_KEY key_;
266 CSSM_KEY public_key_; 266 CSSM_KEY public_key_;
267 #endif 267 #endif
268 268
269 DISALLOW_COPY_AND_ASSIGN(RSAPrivateKey); 269 DISALLOW_COPY_AND_ASSIGN(RSAPrivateKey);
270 }; 270 };
271 271
272 } // namespace crypto 272 } // namespace crypto
273 273
274 #endif // CRYPTO_RSA_PRIVATE_KEY_H_ 274 #endif // CRYPTO_RSA_PRIVATE_KEY_H_
OLDNEW
« no previous file with comments | « crypto/openpgp_symmetric_encryption.h ('k') | crypto/secure_hash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698