// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_QUIC_MOCK_DECRYPTER_H_ #define NET_QUIC_MOCK_DECRYPTER_H_ #include <cstddef> #include <cstdint> #include "base/compiler_specific.h" #include "net/base/net_export.h" #include "net/third_party/quiche/src/quiche/quic/core/crypto/quic_decrypter.h" #include "net/third_party/quiche/src/quiche/quic/core/quic_types.h" namespace net { // A MockDecrypter is a QuicDecrypter that strips the last 12 bytes of // ciphertext (which should be zeroes, but are ignored), and returns the // remaining ciphertext untouched and ignores the associated data. This is used // to allow fuzzing to mutate plaintext packets. class MockDecrypter : public quic::QuicDecrypter { … }; } // namespace net #endif // NET_QUIC_MOCK_DECRYPTER_H_