| // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef QUICHE_QUIC_CORE_CRYPTO_AEAD_BASE_DECRYPTER_H_ |
| #define QUICHE_QUIC_CORE_CRYPTO_AEAD_BASE_DECRYPTER_H_ |
| |
| #include <cstddef> |
| |
| #include "absl/strings/string_view.h" |
| #include "openssl/aead.h" |
| #include "quiche/quic/core/crypto/quic_decrypter.h" |
| #include "quiche/quic/platform/api/quic_export.h" |
| |
| namespace quic { |
| |
| // AeadBaseDecrypter is the base class of AEAD QuicDecrypter subclasses. |
| class QUIC_EXPORT_PRIVATE AeadBaseDecrypter : public QuicDecrypter { |
| public: |
| // This takes the function pointer rather than the EVP_AEAD itself so |
| // subclasses do not need to call CRYPTO_library_init. |
| AeadBaseDecrypter(const EVP_AEAD* (*aead_getter)(), size_t key_size, |
| size_t auth_tag_size, size_t nonce_size, |
| bool use_ietf_nonce_construction); |
| AeadBaseDecrypter(const AeadBaseDecrypter&) = delete; |
| AeadBaseDecrypter& operator=(const AeadBaseDecrypter&) = delete; |
| ~AeadBaseDecrypter() override; |
| |
| // QuicDecrypter implementation |
| bool SetKey(absl::string_view key) override; |
| bool SetNoncePrefix(absl::string_view nonce_prefix) override; |
| bool SetIV(absl::string_view iv) override; |
| bool SetPreliminaryKey(absl::string_view key) override; |
| bool SetDiversificationNonce(const DiversificationNonce& nonce) override; |
| bool DecryptPacket(uint64_t packet_number, absl::string_view associated_data, |
| absl::string_view ciphertext, char* output, |
| size_t* output_length, size_t max_output_length) override; |
| size_t GetKeySize() const override; |
| size_t GetNoncePrefixSize() const override; |
| size_t GetIVSize() const override; |
| absl::string_view GetKey() const override; |
| absl::string_view GetNoncePrefix() const override; |
| |
| protected: |
| // Make these constants available to the subclasses so that the subclasses |
| // can assert at compile time their key_size_ and nonce_size_ do not |
| // exceed the maximum. |
| static const size_t kMaxKeySize = 32; |
| static const size_t kMaxNonceSize = 12; |
| |
| private: |
| const EVP_AEAD* const aead_alg_; |
| const size_t key_size_; |
| const size_t auth_tag_size_; |
| const size_t nonce_size_; |
| const bool use_ietf_nonce_construction_; |
| bool have_preliminary_key_; |
| |
| // The key. |
| unsigned char key_[kMaxKeySize]; |
| // The IV used to construct the nonce. |
| unsigned char iv_[kMaxNonceSize]; |
| |
| bssl::ScopedEVP_AEAD_CTX ctx_; |
| }; |
| |
| } // namespace quic |
| |
| #endif // QUICHE_QUIC_CORE_CRYPTO_AEAD_BASE_DECRYPTER_H_ |