| OLD | NEW |
| 1 // Copyright (c) 2010 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 BASE_CRYPTO_SYMMETRIC_KEY_H_ | 5 #ifndef BASE_CRYPTO_SYMMETRIC_KEY_H_ |
| 6 #define BASE_CRYPTO_SYMMETRIC_KEY_H_ | 6 #define BASE_CRYPTO_SYMMETRIC_KEY_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/base_api.h" |
| 11 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 12 | 13 |
| 13 #if defined(USE_NSS) | 14 #if defined(USE_NSS) |
| 14 #include "base/crypto/scoped_nss_types.h" | 15 #include "base/crypto/scoped_nss_types.h" |
| 15 #elif defined(OS_MACOSX) | 16 #elif defined(OS_MACOSX) |
| 16 #include <Security/cssmtype.h> | 17 #include <Security/cssmtype.h> |
| 17 #elif defined(OS_WIN) | 18 #elif defined(OS_WIN) |
| 18 #include "base/crypto/scoped_capi_types.h" | 19 #include "base/crypto/scoped_capi_types.h" |
| 19 #endif | 20 #endif |
| 20 | 21 |
| 21 namespace base { | 22 namespace base { |
| 22 | 23 |
| 23 // Wraps a platform-specific symmetric key and allows it to be held in a | 24 // Wraps a platform-specific symmetric key and allows it to be held in a |
| 24 // scoped_ptr. | 25 // scoped_ptr. |
| 25 class SymmetricKey { | 26 class BASE_API SymmetricKey { |
| 26 public: | 27 public: |
| 27 // Defines the algorithm that a key will be used with. See also | 28 // Defines the algorithm that a key will be used with. See also |
| 28 // classs Encrptor. | 29 // classs Encrptor. |
| 29 enum Algorithm { | 30 enum Algorithm { |
| 30 AES, | 31 AES, |
| 31 HMAC_SHA1, | 32 HMAC_SHA1, |
| 32 }; | 33 }; |
| 33 | 34 |
| 34 virtual ~SymmetricKey(); | 35 virtual ~SymmetricKey(); |
| 35 | 36 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 // fails with NTE_BAD_KEY/NTE_BAD_LEN | 96 // fails with NTE_BAD_KEY/NTE_BAD_LEN |
| 96 std::string raw_key_; | 97 std::string raw_key_; |
| 97 #endif | 98 #endif |
| 98 | 99 |
| 99 DISALLOW_COPY_AND_ASSIGN(SymmetricKey); | 100 DISALLOW_COPY_AND_ASSIGN(SymmetricKey); |
| 100 }; | 101 }; |
| 101 | 102 |
| 102 } // namespace base | 103 } // namespace base |
| 103 | 104 |
| 104 #endif // BASE_CRYPTO_SYMMETRIC_KEY_H_ | 105 #endif // BASE_CRYPTO_SYMMETRIC_KEY_H_ |
| OLD | NEW |