Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ornl/tasqc
The Timing Authentication Secured by Quantum Correlations project will develop and demonstrate a transformative system of ground-based timing and communication beacons featuring security that is enhanced by geographically distributed quantum correlations and that takes full advantage of the direction of information flow for power systems management.
https://github.com/ornl/tasqc
quantum-computing
Last synced: 29 days ago
JSON representation
The Timing Authentication Secured by Quantum Correlations project will develop and demonstrate a transformative system of ground-based timing and communication beacons featuring security that is enhanced by geographically distributed quantum correlations and that takes full advantage of the direction of information flow for power systems management.
- Host: GitHub
- URL: https://github.com/ornl/tasqc
- Owner: ORNL
- License: other
- Created: 2016-10-06T20:03:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-21T19:29:56.000Z (over 5 years ago)
- Last Synced: 2024-07-24T00:16:51.019Z (5 months ago)
- Topics: quantum-computing
- Language: C++
- Homepage:
- Size: 57.6 KB
- Stars: 2
- Watchers: 6
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Timing Authentication Secured by Quantum Correlations
## Prerequisites:
* Java 7 JDK
* Maven
* CMake
* cURLMake sure that the Java JDK is installed, not just the JRE. Fedora will install it by default, but on Ubuntu you need to explicitly install the JDK on top of the JRE.
## Build instructions for the server:
Move into `gov.ornl.tasqc.keytrans`
```sh
cd gov.ornl.tasqc.keytrans
```Run
```sh
mvn site
mvn package
mvn package shade:shade
```Then execute with
```sh
java -jar target/keytrans-server-.jar
```
## PropertiesProperties are defined in the config.properties file. Currently supported properties are:
* secretKeyFile: The secret key source file. Defaults to "SecretKey.log".
* secretKeyFormat: The format for the secretKeyFile. The only available value is BitPerLine, which reads one "0" or "1" character from each line. All other settings will attempt to read the format used in SecretKey.log, where all keys are written in a single line of characters on the line after "KEY" appears.
* keyFileName: The name of file where the key database will be written and subsequently read by the server. Defaults to "keyDB.txt".
* queueSize: Sets the maximum number of keys for the queue of keys held in memory by the server.
## Build instructions for the client:
*More information is available in keyTransferClient/README.md.*
From the base directory where you checked out the repository:
```sh
mkdir keyTransferClient-build
cd keyTransferClient-build
cmake ../keyTransferClient
```You may pick any build directory you want, actually. Just replace `../` with the directory.