| // Copyright (c) 2019 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 "net/third_party/quiche/src/quic/core/crypto/key_exchange.h" |
| #include "net/third_party/quiche/src/quic/core/crypto/curve25519_key_exchange.h" |
| #include "net/third_party/quiche/src/quic/core/crypto/p256_key_exchange.h" |
| #include "net/third_party/quiche/src/quic/platform/api/quic_bug_tracker.h" |
| std::unique_ptr<SynchronousKeyExchange> CreateLocalSynchronousKeyExchange( |
| QuicStringPiece private_key) { |
| return Curve25519KeyExchange::New(private_key); |
| return P256KeyExchange::New(private_key); |
| QUIC_BUG << "Unknown key exchange method: " << QuicTagToString(type); |
| std::unique_ptr<SynchronousKeyExchange> CreateLocalSynchronousKeyExchange( |
| return Curve25519KeyExchange::New(rand); |
| return P256KeyExchange::New(); |
| QUIC_BUG << "Unknown key exchange method: " << QuicTagToString(type); |