clowwindy
10 years ago
5 changed files with 33 additions and 1 deletions
@ -0,0 +1,10 @@ |
|||||
|
{ |
||||
|
"server":"127.0.0.1", |
||||
|
"server_port":8388, |
||||
|
"local_port":1081, |
||||
|
"password":"salsa20_password", |
||||
|
"timeout":60, |
||||
|
"method":"chacha20", |
||||
|
"local_address":"127.0.0.1", |
||||
|
"fast_open":false |
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
#!/bin/bash |
||||
|
|
||||
|
if [ ! -d libsodium-1.0.1 ]; then |
||||
|
wget https://github.com/jedisct1/libsodium/releases/download/1.0.1/libsodium-1.0.1.tar.gz || exit 1 |
||||
|
tar xf libsodium-1.0.1.tar.gz || exit 1 |
||||
|
fi |
||||
|
pushd libsodium-1.0.1 |
||||
|
./configure && make && make install || exit 1 |
||||
|
popd |
@ -0,0 +1,10 @@ |
|||||
|
{ |
||||
|
"server":"127.0.0.1", |
||||
|
"server_port":8388, |
||||
|
"local_port":1081, |
||||
|
"password":"salsa20_password", |
||||
|
"timeout":60, |
||||
|
"method":"salsa20-ctr", |
||||
|
"local_address":"127.0.0.1", |
||||
|
"fast_open":false |
||||
|
} |
Loading…
Reference in new issue