1
0

fix the description of command Authenticate

This commit is contained in:
EAimTY 2023-02-05 18:03:33 +09:00
parent 2fc443c731
commit c167354335
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
[package]
name = "tuic"
version = "5.0.0-pre-alpha3"
version = "5.0.0-pre-alpha4"
authors = ["EAimTY <ea.imty@gmail.com>"]
description = "Delicately-TUICed 0-RTT proxy protocol"
categories = ["network-programming"]
keywords = ["network", "proxy", "tuic"]
keywords = ["network", "proxy", "quic", "tuic"]
edition = "2021"
rust-version = "1.65.0"
readme = "README.md"

View File

@ -12,7 +12,7 @@ use uuid::Uuid;
/// where:
///
/// - `UUID` - client UUID
/// - `TOKEN` - client token. The client UUID is hashed into a 256-bit long token using [TLS Keying Material Exporter](https://www.rfc-editor.org/rfc/rfc5705) on current TLS session. While exporting, both the `label` and `context` should be the client UUID
/// - `TOKEN` - client token. The client raw password is hashed into a 256-bit long token using [TLS Keying Material Exporter](https://www.rfc-editor.org/rfc/rfc5705) on current TLS session. While exporting, the `label` should be the client UUID and the `context` should be the raw password.
#[derive(Clone, Debug)]
pub struct Authenticate {
uuid: Uuid,