The server accepts null-terminated strings via socket connections and supports up to 20 concurrent connections by default. The server hashes the string using the SHA256 hash function with 10000 rounds of hashing by default. The response from the server is the resulting hash.
The client provides a simple terminal-based user interface. The client accepts input from the user that it will forward to the server and print out the resulting hash. All input is automatically sent to the server as a null-terminated string so the user does not need to account for that aspect.
The client can be exited by inputting \q
.
- docker
- docker-compose
To start the server in a docker container, run the following command:
docker-compose up -d
The client can be built and run via the run-client
script. Run the following commands:
chmod +x run-client.sh
./run-client.sh
Server logs can be accessed via the following command:
docker-compose logs server