Go to file
Matthew Hodgson fe95847245 fix citation 2015-06-26 19:26:01 +02:00
docs Move diagram to docs 2015-06-10 11:14:46 +01:00
include/axolotl Add missing include, fix bug in handling unknown message fields 2015-06-23 15:15:18 +01:00
javascript Make sure the build dir exists 2015-06-26 17:15:24 +01:00
lib Add functions for signing and verifying messages using curve25519 keys 2015-03-03 11:18:07 +00:00
src reduce the number of one time keys that get generated when we create an account 2015-06-23 17:49:04 +01:00
tests Add some tests which advance the ratchet on both sides a few times 2015-06-26 14:42:24 +01:00
tracing Add gdb script and psuedo-call graph generator python script for tracing calls to crypto primitives 2015-06-21 18:47:06 +01:00
.gitignore add a gitignore 2015-02-26 16:58:08 +00:00
LICENSE Copyright notices and a license 2015-02-26 16:56:25 +00:00
README.rst fix citation 2015-06-26 19:26:01 +02:00
axolotl.py Add python ctypes bindings and a command line script using them 2015-06-16 18:13:04 +01:00
build_shared_library.py Make the 'random' numbers different for each key in the tests 2015-06-21 18:33:46 +01:00
test.py Add methods for pickling and unpickling sessions 2015-06-09 18:03:01 +01:00

README.rst

Axolotlpp
=========

An implementation of the axolotl ratchet as described by
https://github.com/trevp/axolotl/wiki, written in C++11 and exposed as a C API

Building
--------

To build axolotlpp as a shared library run:

.. code:: bash

    ./build_shared_library.py

To run the tests run:

.. code:: bash

   ./test.py


To build the javascript bindings run:

.. code:: bash

    javascript/build.py

Design
------

Axolotlpp is designed to be easy port to different platforms and to be easy
to write bindings for.

Error Handling
~~~~~~~~~~~~~~

All C functions in the API for axolotlpp return ``axolotl_error()`` on error.
This makes it easy to check for error conditions within the language bindings.

Random Numbers
~~~~~~~~~~~~~~

Axolotlpp doesn't generate random numbers itself. Instead the caller must
provide the random data. This makes it easier to port the library to different
platforms since the caller can use whatever cryptographic random number
generator their platform provides.

Memory
~~~~~~

Axolotlpp avoids calling malloc or allocating memory on the heap itself.
Instead the library calculates how much memory will be needed to hold the
output and the caller supplies a buffer of the appropriate size.

Output Encoding
~~~~~~~~~~~~~~~

Binary output is encoded as base64 so that languages that prefer unicode
strings will find it easier to handle the output.

Dependencies
~~~~~~~~~~~~

Axolotlpp uses pure C implementations of the cryptographic primitives used by
the ratchet. While this decreases the performance it makes it much easier
to compile the library for different architectures.