// 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_CRYPTO_SECRET_BOXER_H_ #define QUICHE_QUIC_CORE_CRYPTO_CRYPTO_SECRET_BOXER_H_ #include <cstddef> #include <memory> #include <string> #include <vector> #include "absl/strings/string_view.h" #include "quiche/quic/core/crypto/quic_random.h" #include "quiche/quic/platform/api/quic_export.h" #include "quiche/common/platform/api/quiche_mutex.h" namespace quic { // CryptoSecretBoxer encrypts small chunks of plaintext (called 'boxing') and // then, later, can authenticate+decrypt the resulting boxes. This object is // thread-safe. class QUICHE_EXPORT CryptoSecretBoxer { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_CRYPTO_CRYPTO_SECRET_BOXER_H_