// 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. #include "quiche/quic/core/crypto/aes_base_decrypter.h" #include <string> #include "absl/strings/string_view.h" #include "openssl/aes.h" #include "quiche/quic/platform/api/quic_bug_tracker.h" namespace quic { bool AesBaseDecrypter::SetHeaderProtectionKey(absl::string_view key) { … } std::string AesBaseDecrypter::GenerateHeaderProtectionMask( QuicDataReader* sample_reader) { … } QuicPacketCount AesBaseDecrypter::GetIntegrityLimit() const { … } } // namespace quic