summary refs log tree commit diff
path: root/docs/sphinx/synapse.api.auth.rst (unfollow)
Commit message (Collapse)AuthorFilesLines
2014-10-17SPEC-7: Rename 'ts' to 'origin_server_ts'Mark Haines16-42/+42
2014-10-17SPEC-7: Don't stamp event contents with 'hsob_ts'Mark Haines1-13/+3
2014-10-17Rename 'meta' to 'unsigned'Mark Haines4-17/+18
2014-10-17move 'age' into 'meta' subdict so that it is clearer that it is not part of ↵Mark Haines2-7/+19
the signed data
2014-10-17Hash the same content covered by the signature when referencing previous ↵Mark Haines6-16/+84
PDUs rather than reusing the PDU content hashes
2014-10-17move gendoc into matrix-doc projectMatthew Hodgson3-794/+0
2014-10-16Include hashes of previous pdus when referencing themMark Haines11-31/+95
2014-10-16Sign outgoing PDUs.Mark Haines9-24/+62
2014-10-15persist hashes and origin signatures for PDUsMark Haines7-15/+135
2014-10-15Remove warning since the end result is still $sanitize'dKegan Dougal1-3/+1
2014-10-15Add unsanitizedLinky filter to fix links in formatted messages.Kegan Dougal2-5/+57
This filter is identical to ngSanitize's linky but instead of sanitizing text which isn't linkified in the addText function, it doesn't.
2014-10-15Remove org.matrix.custom.text.html event type and replace it with 'format' ↵Kegan Dougal2-3/+2
and 'formatted_body' keys on m.text messages
2014-10-15Add support for org.matrix.custom.text.htmlKegan Dougal2-1/+3
This format will remain undocumented as it is not yet suitable for introduction into the specification.
2014-10-14Make sure to return an empty JSON object ({}) from presence PUT/POST ↵Paul "LeoNerd" Evans1-2/+2
requests rather than an empty string ("") because most deserialisers won't like the latter
2014-10-14SYN-103: Ignore the 'origin' key in received EDUs. Instead take the origin ↵Mark Haines5-3/+10
from the transaction itself
2014-10-14Storage for pdu signaturesMark Haines2-0/+126
2014-10-14remove debugging logging for signing requestsMark Haines1-4/+0
2014-10-14Note that this breaks federationErik Johnston2-0/+9
2014-10-13typoeMatthew Hodgson1-1/+1
2014-10-13Better response message when signature is missing or unsupportedMark Haines1-1/+1
2014-10-13Respond with more helpful error messages for unsigned requestsMark Haines6-10/+45
2014-10-13Raise a SynapseError if the authorisation header is missing or malformedMark Haines2-19/+31
2014-10-13Remove debug logging, raise a proper SynapseError if the auth header is missingMark Haines1-5/+4
2014-10-13Verify signatures for server2server requestsMark Haines5-25/+100
2014-10-13SYN-75 sign at the request level rather than the transaction levelMark Haines7-52/+70
2014