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

Side by Side Diff: crypto/encryptor.h

Issue 1082123003: Rename USE_NSS to USE_NSS_CERTS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use-nss-certs
Patch Set: rebase Created 5 years, 8 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
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | crypto/encryptor_unittest.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_ENCRYPTOR_H_ 5 #ifndef CRYPTO_ENCRYPTOR_H_
6 #define CRYPTO_ENCRYPTOR_H_ 6 #define CRYPTO_ENCRYPTOR_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
12 #include "base/strings/string_piece.h" 12 #include "base/strings/string_piece.h"
13 #include "build/build_config.h" 13 #include "build/build_config.h"
14 #include "crypto/crypto_export.h" 14 #include "crypto/crypto_export.h"
15 15
16 #if defined(USE_NSS) || \ 16 #if defined(USE_NSS_CERTS) || \
17 (!defined(USE_OPENSSL) && (defined(OS_WIN) || defined(OS_MACOSX))) 17 (!defined(USE_OPENSSL) && (defined(OS_WIN) || defined(OS_MACOSX)))
18 #include "crypto/scoped_nss_types.h" 18 #include "crypto/scoped_nss_types.h"
19 #endif 19 #endif
20 20
21 namespace crypto { 21 namespace crypto {
22 22
23 class SymmetricKey; 23 class SymmetricKey;
24 24
25 class CRYPTO_EXPORT Encryptor { 25 class CRYPTO_EXPORT Encryptor {
26 public: 26 public:
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 scoped_ptr<Counter> counter_; 115 scoped_ptr<Counter> counter_;
116 116
117 #if defined(USE_OPENSSL) 117 #if defined(USE_OPENSSL)
118 bool Crypt(bool do_encrypt, // Pass true to encrypt, false to decrypt. 118 bool Crypt(bool do_encrypt, // Pass true to encrypt, false to decrypt.
119 const base::StringPiece& input, 119 const base::StringPiece& input,
120 std::string* output); 120 std::string* output);
121 bool CryptCTR(bool do_encrypt, 121 bool CryptCTR(bool do_encrypt,
122 const base::StringPiece& input, 122 const base::StringPiece& input,
123 std::string* output); 123 std::string* output);
124 std::string iv_; 124 std::string iv_;
125 #elif defined(USE_NSS) || defined(OS_WIN) || defined(OS_MACOSX) 125 #elif defined(USE_NSS_CERTS) || defined(OS_WIN) || defined(OS_MACOSX)
126 bool Crypt(PK11Context* context, 126 bool Crypt(PK11Context* context,
127 const base::StringPiece& input, 127 const base::StringPiece& input,
128 std::string* output); 128 std::string* output);
129 bool CryptCTR(PK11Context* context, 129 bool CryptCTR(PK11Context* context,
130 const base::StringPiece& input, 130 const base::StringPiece& input,
131 std::string* output); 131 std::string* output);
132 ScopedSECItem param_; 132 ScopedSECItem param_;
133 #endif 133 #endif
134 }; 134 };
135 135
136 } // namespace crypto 136 } // namespace crypto
137 137
138 #endif // CRYPTO_ENCRYPTOR_H_ 138 #endif // CRYPTO_ENCRYPTOR_H_
OLDNEW
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | crypto/encryptor_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698