bump to v1.6.5, rename chacha20-ietf-poly1305

* fixed #65
This commit is contained in:
Y. T. Chung
2017-08-31 23:51:40 +08:00
parent 7ee4356948
commit a6bbe2dd05
4 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -1,6 +1,6 @@
[root]
name = "shadowsocks-rust"
version = "1.6.4"
version = "1.6.5"
dependencies = [
"base64 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"byte_string 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@@ -1,6 +1,6 @@
[package]
name = "shadowsocks-rust"
version = "1.6.4"
version = "1.6.5"
authors = ["Y. T. CHUNG <zonyitoo@gmail.com>"]
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
repository = "https://github.com/zonyitoo/shadowsocks-rust"

View File

@@ -114,7 +114,7 @@ List all available arguments with `-h`.
* `chacha20`, `salsa20`, `chacha20-ietf`
* `dummy` (No encryption, just for debugging)
* `aes-128-gcm`, `aes-192-gcm`, `aes-256-gcm`
* `chacha20-poly1305`
* `chacha20-ietf-poly1305`
## Useful Tools

View File

@@ -92,7 +92,7 @@ const CIPHER_DUMMY: &'static str = "dummy";
const CIPHER_AES_128_GCM: &'static str = "aes-128-gcm";
const CIPHER_AES_256_GCM: &'static str = "aes-256-gcm";
const CIPHER_CHACHA20_POLY1305: &'static str = "chacha20-poly1305";
const CIPHER_CHACHA20_POLY1305: &'static str = "chacha20-ietf-poly1305";
/// ShadowSocks cipher type
#[derive(Clone, Debug, Copy)]