- Jan 23, 2019
-
-
Damir Jelić authored
This is a workaround for a bug where signature verification would overwrite the variable holding the signature. This only happens on python2. Signed-off-by:
Damir Jelić <poljar@termina.org.uk>
-
- Oct 23, 2018
-
-
Hubert Chathi authored
-
- Oct 16, 2018
-
-
Hubert Chathi authored
-
Hubert Chathi authored
also reduce the amount of memory copying that we do
-
Hubert Chathi authored
-
- Oct 15, 2018
-
-
Hubert Chathi authored
-
- Oct 13, 2018
-
-
Hubert Chathi authored
-
- Oct 12, 2018
-
-
Hubert Chathi authored
since they're not for the right repository any more
-
Hubert Chathi authored
- build both Python2 and Python3 libs by default, and add separate rules building Python2 and Python. - use the libraries as built by setuptools, rather than building again separately
-
Hubert Chathi authored
-
Hubert Chathi authored
-
Hubert Chathi authored
-
- Jul 18, 2018
-
-
Damir Jelić authored
This patch adds the ability to build the bindings without having a globally installed Olm C library. Provided that the C library is already built, the tests can be run now with make test. Signed-off-by:
Damir Jelić <poljar@termina.org.uk>
-
Damir Jelić authored
This commit imports the python bindings from: https://github.com/poljar/python-olm The bindings are imported at commit c44b145818520d69eaaa350fb95afcb846125e0f Minor modifications were made while importing: - Removed travis config - Removed Arch Linux PKGBUILD - Removed the html docs, they can be rebuild by running make html in the docs folder - Slightly modified the README The new bindings feature some improvements over the old ones: - Python 2 and 3 support - Automatic memory management - Automatic memory clearing before it is freed - Type signatures via the python typing module - Full test coverage - Properties are utilized where it makes sense (e.g. account.id) Signed-off-by:
Damir Jelić <poljar@termina.org.uk>
-
Damir Jelić authored
Signed-off-by:
Damir Jelić <poljar@termina.org.uk>
-
- May 29, 2018
-
-
Wilfried Klaebe authored
Signed-off-by:
Wilfried Klaebe <w+gitstuff@chaos.in-kiel.de>
-
- Apr 24, 2017
-
-
Richard van der Hoff authored
It's not much use if everything is hardcoded.
-
Richard van der Hoff authored
Fix line lengths in newly-added code
-
pik authored
Signed-off-by:
Alexander Maznev <alexander.maznev@gmail.com>
-
pik authored
Signed-off-by:
Alexander Maznev <alexander.maznev@gmail.com>
-
- Apr 18, 2017
-
-
pik authored
Signed-off-by:
Alexander Maznev <alexander.maznev@gmail.com>
-
Richard van der Hoff authored
make the python code adhere to PEP8
-
- Apr 04, 2017
-
-
J08nY authored
Signed-off-by:
Jan Jancar <johny@neuromancer.sk>
-
- Jan 09, 2017
-
-
Richard van der Hoff authored
olm_import_inbound_group_session, which reads the format written by olm_export_inbound_group_session to initialise a group session.
-
- Jan 06, 2017
-
-
Richard van der Hoff authored
A pair of functions which allow you to export the megolm keys for an inbound group session, so that an application can save/restore them.
-
- Oct 25, 2016
-
-
Richard van der Hoff authored
-
- Oct 20, 2016
-
-
Mark Haines authored
Applications can use the index to detect replays of the same message.
-
- Oct 02, 2016
-
-
Matthew Hodgson authored
These missing signatures were causing OSX to truncate 64-bit pointers to 32-bit pointers when calling the missing methods, causing segfaults
-
- Sep 22, 2016
-
-
Richard van der Hoff authored
-
Richard van der Hoff authored
-
- Sep 16, 2016
-
-
Mark Haines authored
-
- Sep 13, 2016
-
-
Mark Haines authored
-
Mark Haines authored
-
- Sep 01, 2016
-
-
Richard van der Hoff authored
Ed25519 private keys, it turns out, have 64 bytes, not 32. We were previously generating only 32 bytes (which is all that is required to generate the public key), and then using the public key as the upper 32 bytes when generating the per-message session key. This meant that everything appeared to work, but the security of the private key was severely compromised. By way of fixes: * Use the correct algorithm for generating the Ed25519 private key, and store all 512 bits of it. * Update the account pickle format and refuse to load the old format (since we should consider it compromised). * Bump the library version, and add a function to retrieve the library version, so that applications can verify that they are linked against a fixed version of the library. * Remove the curve25519_{sign, verify} functions which were unused and of dubious quality.
-
- May 24, 2016
-
-
Richard van der Hoff authored
I want to use test_olm.sh on jenkins, which lacks jq. Hence, add support to olm.main to get id and one-time keys individually.
-
Richard van der Hoff authored
-
Richard van der Hoff authored
-
Richard van der Hoff authored
We need to be able to inspect an outbound session so that we can tell our peer how to set up an inbound session.
-
Richard van der Hoff authored
-
- May 20, 2016
-
-
Richard van der Hoff authored
Split the python wrappers into separate modules
-