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

Side by Side Diff: crypto/encryptor_nss.cc

Issue 6805019: Move crypto files out of base, to a top level directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
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 #include "base/crypto/encryptor.h" 5 #include "base/crypto/encryptor.h"
6 6
7 #include <cryptohi.h> 7 #include <cryptohi.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/crypto/symmetric_key.h" 10 #include "base/crypto/symmetric_key.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/nss_util.h" 12 #include "base/nss_util.h"
13 13
14 namespace base { 14 namespace crypto {
15 15
16 Encryptor::Encryptor() 16 Encryptor::Encryptor()
17 : key_(NULL), 17 : key_(NULL),
18 mode_(CBC) { 18 mode_(CBC) {
19 EnsureNSSInit(); 19 EnsureNSSInit();
20 } 20 }
21 21
22 Encryptor::~Encryptor() { 22 Encryptor::~Encryptor() {
23 } 23 }
24 24
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 &digest_len, 115 &digest_len,
116 plaintext_len - op_len); 116 plaintext_len - op_len);
117 if (SECSuccess != rv) 117 if (SECSuccess != rv)
118 return false; 118 return false;
119 119
120 plaintext->assign(reinterpret_cast<char *>(&buffer[0]), 120 plaintext->assign(reinterpret_cast<char *>(&buffer[0]),
121 op_len + digest_len); 121 op_len + digest_len);
122 return true; 122 return true;
123 } 123 }
124 124
125 } // namespace base 125 } // namespace crypto
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698