// 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_CURVE25519_KEY_EXCHANGE_H_ #define QUICHE_QUIC_CORE_CRYPTO_CURVE25519_KEY_EXCHANGE_H_ #include <cstdint> #include <string> #include "absl/strings/string_view.h" #include "quiche/quic/core/crypto/key_exchange.h" #include "quiche/quic/core/crypto/quic_random.h" #include "quiche/quic/platform/api/quic_export.h" namespace quic { // Curve25519KeyExchange implements a SynchronousKeyExchange using // elliptic-curve Diffie-Hellman on curve25519. See http://cr.yp.to/ecdh.html class QUICHE_EXPORT Curve25519KeyExchange : public SynchronousKeyExchange { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_CRYPTO_CURVE25519_KEY_EXCHANGE_H_