Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-24 | remove other_key checks from Python binding since it's done in C now | Hubert Chathi | |
2019-06-18 | olm: Allow decryption functions to define how to handle unicode decode errors. | Damir Jelić | |
This patch changes the decryption functions not to fail if there was an unicode decode error while converting the decrypted bytes plaintext into a native python string. Characters that cannot be decoded as unicode are now replaced with the unicode replacement character (U+FFFD). The old behaviour of raising an UnicodeDecodeError can be achieved by passing the "strict" error handling scheme to the decrypt function. | |||
2019-04-09 | python: Add support for the long KDF MAC calculation. | Damir Jelić | |
2019-04-09 | python: Remove an unneeded and old copyright header. | Damir Jelić | |
2019-04-02 | python: Add Short Authentication String bindings. | Damir Jelić | |
This patch adds bindings to the SAS part of the Olm library contained in the sas.h header file. Signed-off-by: Damir Jelić <poljar@termina.org.uk> |