s2n_quic_crypto/
handshake.rs

1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4use s2n_quic_core::crypto;
5
6header_key!(HandshakeHeaderKey);
7negotiated_crypto!(HandshakeKey, HandshakeHeaderKey);
8
9impl crypto::HandshakeKey for HandshakeKey {}
10
11impl crypto::HandshakeHeaderKey for HandshakeHeaderKey {}