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

Side by Side Diff: base/crypto/encryptor_mac.cc

Issue 6410105: run iwyu on base! Base URL: svn://svn.chromium.org/chrome/trunk/src/base
Patch Set: Created 9 years, 10 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 | « base/crypto/cssm_init.cc ('k') | base/crypto/rsa_private_key.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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 </Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/Security.fram ework/Headers/cssmtype.h>
6 #include <CommonCrypto/CommonCryptor.h>
7 #include <stdbool.h>
8 #include <stddef.h>
9 #include <string>
10
5 #include "base/crypto/encryptor.h" 11 #include "base/crypto/encryptor.h"
6
7 #include <CommonCrypto/CommonCryptor.h>
8
9 #include "base/crypto/symmetric_key.h" 12 #include "base/crypto/symmetric_key.h"
10 #include "base/logging.h" 13 #include "base/logging.h"
11 #include "base/string_util.h" 14 #include "base/string_util.h"
12 15
13 namespace base { 16 namespace base {
14 17
15 Encryptor::Encryptor() { 18 Encryptor::Encryptor() {
16 } 19 }
17 20
18 Encryptor::~Encryptor() { 21 Encryptor::~Encryptor() {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 68
66 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { 69 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) {
67 return Crypt(kCCEncrypt, plaintext, ciphertext); 70 return Crypt(kCCEncrypt, plaintext, ciphertext);
68 } 71 }
69 72
70 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { 73 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) {
71 return Crypt(kCCDecrypt, ciphertext, plaintext); 74 return Crypt(kCCDecrypt, ciphertext, plaintext);
72 } 75 }
73 76
74 } // namespace base 77 } // namespace base
OLDNEW
« no previous file with comments | « base/crypto/cssm_init.cc ('k') | base/crypto/rsa_private_key.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698