QUICHE team | 2d18797 | 2019-03-19 16:23:47 -0700 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef QUICHE_QUIC_CORE_CRYPTO_AES_BASE_ENCRYPTER_H_ |
| 6 | #define QUICHE_QUIC_CORE_CRYPTO_AES_BASE_ENCRYPTER_H_ |
| 7 | |
| 8 | #include <cstddef> |
| 9 | |
| 10 | #include "third_party/boringssl/src/include/openssl/aes.h" |
| 11 | #include "net/third_party/quiche/src/quic/core/crypto/aead_base_encrypter.h" |
| 12 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
| 13 | #include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h" |
| 14 | |
| 15 | namespace quic { |
| 16 | |
| 17 | class QUIC_EXPORT_PRIVATE AesBaseEncrypter : public AeadBaseEncrypter { |
| 18 | public: |
| 19 | using AeadBaseEncrypter::AeadBaseEncrypter; |
| 20 | |
| 21 | bool SetHeaderProtectionKey(QuicStringPiece key) override; |
| 22 | std::string GenerateHeaderProtectionMask(QuicStringPiece sample) override; |
| 23 | |
| 24 | private: |
| 25 | // The key used for packet number encryption. |
| 26 | AES_KEY pne_key_; |
| 27 | }; |
| 28 | |
| 29 | } // namespace quic |
| 30 | |
| 31 | #endif // QUICHE_QUIC_CORE_CRYPTO_AES_BASE_ENCRYPTER_H_ |