// 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_encrypter.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 AesBaseEncrypter::SetHeaderProtectionKey(absl::string_view key) { … } std::string AesBaseEncrypter::GenerateHeaderProtectionMask( absl::string_view sample) { … } QuicPacketCount AesBaseEncrypter::GetConfidentialityLimit() const { … } } // namespace quic