Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

blakey22/shadowsocks-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project is being discontinued

Since I am busy at work in the past few years and couldn't find time to maintain it, I believe it's time to achieve it. Thank you to everyone who has used/interested in shadowsocks-java.

shadowsocks-java

shadowsocks-java is a pure JAVA client for shadowsocks project.

Only tested AES encryption.

Requirements

* Bouncy Castle v1.5.2 [Release](https://www.bouncycastle.org/)
* json-simple v1.1.1 [Release](https://code.google.com/p/json-simple/)

Developers

* Using Non-blocking server
    Config config = new Config("SS_SERVER_IP", "SS_SERVER_PORT", "LOCAL_IP", "LOCAL_PORT", "CIPHER_NAME", "PASSWORD");
    NioLocalServer server = new NioLocalServer(config);
    new Thread(server).start();
    
* Using blocking server
    Config config = new Config("SS_SERVER_IP", "SS_SERVER_PORT", "LOCAL_IP", "LOCAL_PORT", "CIPHER_NAME", "PASSWORD");
    LocalServer server = new LocalServer(config);
    new Thread(server).start();

About

Shadowsocks Java client

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages