Roughenough

Apache License 2 Build Status

Roughenough is a Roughtime secure time synchronization server implemented in Rust.

The server is bare-bones, but functionally complete: it parses client requests and generates valid Roughtime responses. Rough edges and unimplemented features remain, see limitations below. Contributions are welcome.

Links

Building and Running

Starting the Server

bash $ cargo run --release --bin server /path/to/config.file ... 2017-07-03T19:39:45-05:00 [INFO] Roughenough server v0.1 starting 2017-07-03T19:39:45-05:00 [INFO] Long-term public key: d0756ee69ff5fe96cbcf9273208fec53124b1dd3a24d3910e07c7c54e2473012 2017-07-03T19:39:45-05:00 [INFO] Ephemeral public key: 575d5ed128143c0f7a5cdaf476601dd1b8a192a7199e62c0d2c039b53234d062 2017-07-03T19:39:45-05:00 [INFO] Server listening on 127.0.0.1:8686

The resulting binary is target/release/server. After building you can copy the binary and run on its own (no cargo needed):

bash $ cp target/release/server /usr/local/bin $ /usr/local/bin/server /path/to/config.file

Configuration File

The server is configured via a YAML file:

yaml interface: 127.0.0.1 port: 8686 seed: f61075c988feb9cb700a4a6a3291bfbc9cab11b9c9eca8c802468eb38a43d7d3

Where:

Stopping the Server

Use Ctrl-C or kill the process.

Limitations

Roughtime features not implemented:

Other notes:

About the Roughtime Protocol

Roughtime is a protocol that aims to achieve rough time synchronisation in a secure way that doesn't depend on any particular time server, and in such a way that, if a time server does misbehave, clients end up with cryptographic proof of it. It was created by Adam Langley and Robert Obryk.

Contributors

Copyright and License

Roughenough is copyright (c) 2017 int08h LLC. All rights reserved.

int08h LLC licenses Roughenough (the "Software") to you under the Apache License, version 2.0 (the "License"); you may not use this Software except in compliance with the License. You may obtain a copy of the License from the LICENSE file included with the Software or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.