Tobias Eidelpes d1bf65698d Correct client challenge encoding
First, encode the individual parameters, then add them to the command,
do the encryption and then encode the binary string again for sending.
2020-12-29 10:33:26 +01:00
2020-12-18 17:02:46 +01:00
2020-12-18 17:02:46 +01:00
2020-12-18 17:02:46 +01:00
2020-12-29 10:33:26 +01:00
2020-12-23 12:01:30 +01:00
2020-12-18 17:02:46 +01:00
2020-12-18 17:02:46 +01:00
2020-12-18 17:02:46 +01:00
2020-12-18 17:02:46 +01:00
2020-12-18 17:02:46 +01:00

distributed systems lab

Using gradle

Compile & Test

Gradle is the build tool we are using. Here are some instructions:

Compile the project using the gradle wrapper:

./gradlew assemble

Compile and run the tests:

./gradlew build

Run the applications

The gradle config config contains several tasks that start application components for you. You can list them with

./gradlew tasks --all

And search for 'Other tasks' starting with run-. For example, to run the monitoring server, execute: (the --console=plain flag disables CLI features, like color output, that may break the console output when running a interactive application)

./gradlew --console=plain run-monitoring
Description
Project carried out as part of the Distributed Systems course at TU Wien in 2020WS
Readme 685 KiB
Languages
Java 100%