// 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 QUICHE_EXPORT AeadBaseDecrypter : public QuicDecrypter { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_CRYPTO_AEAD_BASE_DECRYPTER_H_