aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-19OLMKit: Reset intermediate buffers to zeroesmanuroe
2016-11-24OLMKit: Make returned NSError provide the raw olm error string ↵manuroe
(ex:"UNKNOWN_MESSAGE_INDEX") in their NSLocalizedDescriptionKey. NSLocalizedFailureReasonErrorKey can contain more contextual information.
2016-11-18OLMKit: Fixed warnings in objc wrappermanuroe
2016-11-17OLMKit: Update Copyrightsmanuroe
2016-11-17OLMKit: Improve wordingmanuroe
2016-11-17OLMKit: Podfile.lock++manuroe
2016-11-17OLMKit: Add it to olm from version 2.0.1manuroe
2016-11-14OLMKit: Add missing implementations for matchesInboundSession ↵olmkit-v2.0.0manuroe
matchesInboundSessionFrom
2016-11-14OLMKit: Fix warning in OLMUtilitymanuroe
2016-11-14OLMKit: Fixed type-cast of messageIndex of [OLMInboundGroupSession ↵manuroe
decryptMessage] for 32 and 64bits platforms
2016-11-14OLMKit: Replaced NSAsserts by NSErrorsmanuroe
2016-11-07OLMKit: Update obj-c wrapper to 2.0.0manuroe
2016-11-07Merge remote-tracking branch 'origin/master' into olmkitmanuroe
2016-11-04OLMKit: podspec: Attempt to fix duplicate symbols because ed25519.c includes ↵manuroe
.c files
2016-11-04OLMKit: podspec: Attempt to fix duplicate symbols because ed25519.c includes ↵manuroe
.c files
2016-11-04OLMKit: podspec: Some files are missingmanuroe
2016-11-04OLMKit: podspec: Some files are missingmanuroe
2016-11-03OLMKit: Attempt to make podspec work when the pod is downloaded from gitmanuroe
2016-10-27Add a document on signing keysRichard van der Hoff
2016-10-25Update python wrapper to run against libolm.so.2Richard van der Hoff
2016-10-25Merge branch 'release-v2.0.0'Richard van der Hoff
2016-10-25Document the return values for olm_matches_inbound_sessionMark Haines
2016-10-25Version bump for 2.0.02.0.0Richard van der Hoff
2016-10-24Changelog: Mention install-headersRichard van der Hoff
2016-10-24Prepare changelog for v2.0.0Richard van der Hoff
2016-10-24Fix broken fuzzer compilationRichard van der Hoff
fuzz_group_decrypt.cpp got broken by 653790e; fix it up
2016-10-24remove redundant svgRichard van der Hoff
2016-10-24double_ratchet.svgRichard van der Hoff
2016-10-24Merge pull request #33 from matrix-org/rav/pickle_lengthRichard van der Hoff
Return the base64-encoded length of pickles
2016-10-24Merge pull request #32 from matrix-org/markjh/replayMark Haines
Document the potential for message replays and possible mitigations
2016-10-24Return the base64-encoded length of picklesRichard van der Hoff
make olm_pickle_* return the lengths of the base64-encoded pickles, rather than the raw pickle. (From the application's POV, the format of the pickle is opaque: it doesn't even know that it is base64-encoded. So returning the length of the raw pickle is particularly unhelpful.)
2016-10-21Merge branch 'rav/clear_random_bufs'Richard van der Hoff
2016-10-21Clear random buf in olm_init_outbound_group_sessionRichard van der Hoff
All the other methods clear their random inputs. This one needs to do the same, to reduce the risk of the randomness being used elsewhere and leaking key info.
2016-10-21SpellingMark Haines
2016-10-21s/they've/they have/Mark Haines
2016-10-21Reword and s/message index/ratchet index/Mark Haines
2016-10-21Document the potential for message replays and possible mitigationsMark Haines
2016-10-21Merge pull request #31 from matrix-org/markjh/groupmessageindexMark Haines
Return the message index when decrypting group messages.
2016-10-20Check the message index in the testsMark Haines
2016-10-20Merge branch 'master'Richard van der Hoff
2016-10-20Merge pull request #30 from matrix-org/rav/misc_docsRichard van der Hoff
Add notes on limitations to megolm spec
2016-10-20Add NULL check for message_index pointerMark Haines
2016-10-20Return the message index when decrypting group messages.Mark Haines
Applications can use the index to detect replays of the same message.
2016-10-19s/ephemeral/one-time/ in olm specRichard van der Hoff
We're standardising on 'one-time keys' as a term for the thing that Bob uploads for prekey messages.
2016-10-19Add notes on limitations to megolm specRichard van der Hoff
2016-10-19Link to the megolm specRichard van der Hoff
2016-10-19Document the unknown key-share attacks and mitigation (#29)Richard van der Hoff
2016-10-19Merge pull request #28 from matrix-org/rav/fix_megolm_segfaultRichard van der Hoff
Fix a buffer bounds check when decoding group messages
2016-10-19Merge pull request #27 from matrix-org/rav/fuzzers_readmeRichard van der Hoff
Add a README for the fuzzers
2016-10-19Fix a buffer bounds check when decoding group messagesRichard van der Hoff
Fixes a segfault when a group message had exactly the length of the mac + signature. Also tweak skipping of unknown tags to avoid an extra trip around the loop.