diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2024-02-17 21:45:43 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-02-17 21:45:43 +0100 |
commit | a6efccb09e380420d2cb565a79768124c31be061 (patch) | |
tree | f090d45dc142079cc627b15af3d64b5ac70c9aad /README.md | |
parent | a28d1daed8d89fceaa014a244a506d8092d6ca7c (diff) |
Add README file
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..04ff4f2 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +Erebos/C++ +========== + +Library implementing the Erebos identity management, decentralized messaging +and synchronization protocol, along with local storage. Specification being +created at: + +[http://erebosprotocol.net](http://erebosprotocol.net) + +Erebos identity is based on locally stored cryptographic keys, all +communication is end-to-end encrypted. Multiple devices can be attached to the +same identity, after which they function interchangeably, without any one being +in any way "primary"; messages and other state data are then synchronized +automatically whenever the devices are able to connect with one another. + +Status +------ + +This is experimental implementation of yet unfinished specification, so +changes, especially in the library API, are expected. Storage format and +network protocol should generally remain backward compatible, with their +respective versions to be increased in case of incompatible changes, to allow +for interoperability even in that case. + +Build +----- + +This library uses CMake for building: + +``` +cmake -B build +cmake --build build +``` + +Usage +----- + +The API is currently experimental and without documentation; some example of +usage can be found in the test executable (`src/main.cpp`). |