Coder Social home page Coder Social logo

bitcard / olm2 Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 1.26 MB

License: Apache License 2.0

CMake 0.34% Makefile 1.22% Ruby 0.20% Java 13.04% C++ 28.68% C 27.03% Python 8.01% Objective-C 15.81% CSS 0.01% HTML 0.44% JavaScript 5.00% Shell 0.01% Assembly 0.01% Batchfile 0.05% GDB 0.15%

olm2's Introduction

Olm

An implementation of the Double Ratchet cryptographic ratchet described by https://whispersystems.org/docs/specifications/doubleratchet/, written in C and C++11 and exposed as a C API.

The specification of the Olm ratchet can be found in docs/olm.md.

This library also includes an implementation of the Megolm cryptographic ratchet, as specified in docs/megolm.md.

Building

To build olm as a shared library run either:

cmake . -Bbuild
cmake --build build

or:

make

Using cmake is the preferred method for building the shared library; the Makefile may be removed in the future.

To run the tests when using cmake, run:

cd build/tests
ctest .

To run the tests when using make, run:

make test

To build the JavaScript bindings, install emscripten from http://kripken.github.io/emscripten-site/ and then run:

make js

Note that if you run emscripten in a docker container, you need to pass through the EMCC_CLOSURE_ARGS environment variable.

To build the android project for Android bindings, run:

cd android
./gradlew clean assembleRelease

To build the Xcode workspace for Objective-C bindings, run:

cd xcode
pod install
open OLMKit.xcworkspace

To build the Python bindings, first build olm as a shared library as above, and then run:

cd python
make

to make both the Python 2 and Python 3 bindings. To make only one version, use make olm-python2 or make olm-python3 instead of just make.

To build olm as a static library (which still needs libstdc++ dynamically) run either:

cmake . -Bbuild -DBUILD_SHARED_LIBS=NO
cmake --build build

or

make static

The library can also be used as a dependency with CMake using:

find_package(Olm::Olm REQUIRED)
target_link_libraries(my_exe Olm::Olm)

Release process

First: bump version numbers in common.mk, CMakeLists.txt, javascript/package.json, python/olm/__version__.py, OLMKit.podspec, and android/olm-sdk/build.gradle (versionCode, versionName and version).

Also, ensure the changelog is up to date, and that everyting is committed to git.

It's probably sensible to do the above on a release branch (release-vx.y.z by convention), and merge back to master once the release is complete.

make clean

# build and test C library
make test

# build and test JS wrapper
make js
(cd javascript && npm run test)
npm pack javascript

VERSION=x.y.z
scp olm-$VERSION.tgz [email protected]:packages/npm/olm/
git tag $VERSION -s
git push --tags

# OLMKit CocoaPod release
# Make sure the version OLMKit.podspec is the same as the git tag
# (this must be checked before git tagging)
pod spec lint OLMKit.podspec --use-libraries --allow-warnings
pod trunk push OLMKit.podspec --use-libraries --allow-warnings
# Check the pod has been successully published with:
pod search OLMKit

Design

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

It was originally implemented in C++, with a plain-C layer providing the public API. As development has progressed, it has become clear that C++ gives little advantage, and new functionality is being added in C, with C++ parts being rewritten as the need ariases.

Error Handling

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

Random Numbers

Olm 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

Olm 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

Olm 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.

Contributing

Please see CONTRIBUTING.md when making contributions to the library.

Security assessment

Olm 1.3.0 was independently assessed by NCC Group's Cryptography Services Practive in September 2016 to check for security issues: you can read all about it at https://www.nccgroup.trust/us/our-research/matrix-olm-cryptographic-review/ and https://matrix.org/blog/2016/11/21/matrixs-olm-end-to-end-encryption-security-assessment-released-and-implemented-cross-platform-on-riot-at-last/

Bug reports

Please file bug reports at https://github.com/matrix-org/olm/issues

What's an olm?

It's a really cool species of European troglodytic salamander. http://www.postojnska-jama.eu/en/come-and-visit-us/vivarium-proteus/

Legal Notice

The software may be subject to the U.S. export control laws and regulations and by downloading the software the user certifies that he/she/it is authorized to do so in accordance with those export control laws and regulations.

olm2's People

Contributors

richvdh avatar negativemjark avatar uhoreg avatar manuroe avatar dbkr avatar ara4n avatar poljar avatar bmarty avatar aaronraimist avatar billcarsonfr avatar pik avatar ylecollen avatar linkmauve avatar chrisballinger avatar avery-pierce avatar a-andreyev avatar kitsuneral avatar qznc avatar eflanagan0 avatar ghughes avatar j08ny avatar mujx avatar mtrnord avatar spacekitteh avatar trygveaa avatar stoically avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.