// Copyright (c) 2012 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_NULL_DECRYPTER_H_ #define QUICHE_QUIC_CORE_CRYPTO_NULL_DECRYPTER_H_ #include <cstddef> #include <cstdint> #include "absl/numeric/int128.h" #include "absl/strings/string_view.h" #include "quiche/quic/core/crypto/quic_decrypter.h" #include "quiche/quic/core/quic_types.h" #include "quiche/quic/platform/api/quic_export.h" namespace quic { class QuicDataReader; // A NullDecrypter is a QuicDecrypter used before a crypto negotiation // has occurred. It does not actually decrypt the payload, but does // verify a hash (fnv128) over both the payload and associated data. class QUICHE_EXPORT NullDecrypter : public QuicDecrypter { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_CRYPTO_NULL_DECRYPTER_H_