| OLD | NEW |
| 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 "base/crypto/encryptor.h" | 5 #include "base/crypto/encryptor.h" |
| 6 | 6 |
| 7 #include <CommonCrypto/CommonCryptor.h> | 7 #include <CommonCrypto/CommonCryptor.h> |
| 8 | 8 |
| 9 #include "base/crypto/symmetric_key.h" |
| 9 #include "base/logging.h" | 10 #include "base/logging.h" |
| 10 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 11 | 12 |
| 12 namespace base { | 13 namespace base { |
| 13 | 14 |
| 14 Encryptor::Encryptor() { | 15 Encryptor::Encryptor() { |
| 15 } | 16 } |
| 16 | 17 |
| 17 Encryptor::~Encryptor() { | 18 Encryptor::~Encryptor() { |
| 18 } | 19 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 | 65 |
| 65 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { | 66 bool Encryptor::Encrypt(const std::string& plaintext, std::string* ciphertext) { |
| 66 return Crypt(kCCEncrypt, plaintext, ciphertext); | 67 return Crypt(kCCEncrypt, plaintext, ciphertext); |
| 67 } | 68 } |
| 68 | 69 |
| 69 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { | 70 bool Encryptor::Decrypt(const std::string& ciphertext, std::string* plaintext) { |
| 70 return Crypt(kCCDecrypt, ciphertext, plaintext); | 71 return Crypt(kCCDecrypt, ciphertext, plaintext); |
| 71 } | 72 } |
| 72 | 73 |
| 73 } // namespace base | 74 } // namespace base |
| OLD | NEW |