Skip to content

Commit a6bbe2d

Browse files
committed
bump to v1.6.5, rename chacha20-ietf-poly1305
* fixed #65
1 parent 7ee4356 commit a6bbe2d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shadowsocks-rust"
3-
version = "1.6.4"
3+
version = "1.6.5"
44
authors = ["Y. T. CHUNG <[email protected]>"]
55
description = "shadowsocks is a fast tunnel proxy that helps you bypass firewalls."
66
repository = "https://github.com/zonyitoo/shadowsocks-rust"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ List all available arguments with `-h`.
114114
* `chacha20`, `salsa20`, `chacha20-ietf`
115115
* `dummy` (No encryption, just for debugging)
116116
* `aes-128-gcm`, `aes-192-gcm`, `aes-256-gcm`
117-
* `chacha20-poly1305`
117+
* `chacha20-ietf-poly1305`
118118

119119
## Useful Tools
120120

src/crypto/cipher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const CIPHER_DUMMY: &'static str = "dummy";
9292

9393
const CIPHER_AES_128_GCM: &'static str = "aes-128-gcm";
9494
const CIPHER_AES_256_GCM: &'static str = "aes-256-gcm";
95-
const CIPHER_CHACHA20_POLY1305: &'static str = "chacha20-poly1305";
95+
const CIPHER_CHACHA20_POLY1305: &'static str = "chacha20-ietf-poly1305";
9696

9797
/// ShadowSocks cipher type
9898
#[derive(Clone, Debug, Copy)]

0 commit comments

Comments
 (0)