OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 NET_QUIC_CRYPTO_CRYPTO_SECRET_BOXER_H_ | 5 #ifndef NET_QUIC_CRYPTO_CRYPTO_SECRET_BOXER_H_ |
6 #define NET_QUIC_CRYPTO_CRYPTO_SECRET_BOXER_H_ | 6 #define NET_QUIC_CRYPTO_CRYPTO_SECRET_BOXER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" |
10 #include "base/strings/string_piece.h" | 11 #include "base/strings/string_piece.h" |
11 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 13 #include "net/quic/crypto/quic_decrypter.h" |
| 14 #include "net/quic/crypto/quic_encrypter.h" |
12 | 15 |
13 namespace net { | 16 namespace net { |
14 | 17 |
15 class QuicRandom; | 18 class QuicRandom; |
16 | 19 |
17 // CryptoSecretBoxer encrypts small chunks of plaintext (called 'boxing') and | 20 // CryptoSecretBoxer encrypts small chunks of plaintext (called 'boxing') and |
18 // then, later, can authenticate+decrypt the resulting boxes. This object is | 21 // then, later, can authenticate+decrypt the resulting boxes. This object is |
19 // thread-safe. | 22 // thread-safe. |
20 class NET_EXPORT_PRIVATE CryptoSecretBoxer { | 23 class NET_EXPORT_PRIVATE CryptoSecretBoxer { |
21 public: | 24 public: |
| 25 // Initializes |encrypter_| and |decrypter_| data members. |
| 26 CryptoSecretBoxer(); |
| 27 ~CryptoSecretBoxer(); |
| 28 |
22 // GetKeySize returns the number of bytes in a key. | 29 // GetKeySize returns the number of bytes in a key. |
23 static size_t GetKeySize(); | 30 static size_t GetKeySize(); |
24 | 31 |
25 // SetKey sets the key for this object. This must be done before |Box| or | 32 // SetKey sets the key for this object. This must be done before |Box| or |
26 // |Unbox| are called. |key| must be |GetKeySize()| bytes long. | 33 // |Unbox| are called. |key| must be |GetKeySize()| bytes long. Returns false |
27 void SetKey(base::StringPiece key); | 34 // if |encrypter_| or |decrypter_|'s SetKey method fails. |
| 35 bool SetKey(base::StringPiece key); |
28 | 36 |
29 // Box encrypts |plaintext| using a random nonce generated from |rand| and | 37 // Box encrypts |plaintext| using a random nonce generated from |rand| and |
30 // returns the resulting ciphertext. Since an authenticator and nonce are | 38 // returns the resulting ciphertext. Since an authenticator and nonce are |
31 // included, the result will be slightly larger than |plaintext|. | 39 // included, the result will be slightly larger than |plaintext|. |
32 std::string Box(QuicRandom* rand, base::StringPiece plaintext) const; | 40 std::string Box(QuicRandom* rand, base::StringPiece plaintext) const; |
33 | 41 |
34 // Unbox takes the result of a previous call to |Box| in |ciphertext| and | 42 // Unbox takes the result of a previous call to |Box| in |ciphertext| and |
35 // authenticates+decrypts it. If |ciphertext| is not authentic then it | 43 // authenticates+decrypts it. If |ciphertext| is not authentic then it |
36 // returns false. Otherwise, |out_storage| is used to store the result and | 44 // returns false. Otherwise, |out_storage| is used to store the result and |
37 // |out| is set to point into |out_storage| and contains the original | 45 // |out| is set to point into |out_storage| and contains the original |
38 // plaintext. | 46 // plaintext. |
39 bool Unbox(base::StringPiece ciphertext, | 47 bool Unbox(base::StringPiece ciphertext, |
40 std::string* out_storage, | 48 std::string* out_storage, |
41 base::StringPiece* out) const; | 49 base::StringPiece* out) const; |
42 | 50 |
43 private: | 51 private: |
44 std::string key_; | 52 scoped_ptr<QuicEncrypter> encrypter_; |
| 53 scoped_ptr<QuicDecrypter> decrypter_; |
| 54 |
| 55 DISALLOW_COPY_AND_ASSIGN(CryptoSecretBoxer); |
45 }; | 56 }; |
46 | 57 |
47 } // namespace net | 58 } // namespace net |
48 | 59 |
49 #endif // NET_QUIC_CRYPTO_CRYPTO_SECRET_BOXER_H_ | 60 #endif // NET_QUIC_CRYPTO_CRYPTO_SECRET_BOXER_H_ |
OLD | NEW |