No description
Find a file
Pim Kunis 38af22fea6 Add function to sign event
Add signing server to perform signing
Add enacl library to perform ed25519 crypto
2021-08-05 13:30:46 +02:00
config Add function to sign event 2021-08-05 13:30:46 +02:00
keys Add function to sign event 2021-08-05 13:30:46 +02:00
lib Add function to sign event 2021-08-05 13:30:46 +02:00
priv/repo Add alias creation endpoint 2021-07-30 15:56:24 +02:00
test Add part of room creation endpoint 2021-07-17 17:38:20 +02:00
.formatter.exs Init git repo 2021-06-22 14:09:25 +02:00
.gitignore Add function to sign event 2021-08-05 13:30:46 +02:00
.tool-versions Add function to sign event 2021-08-05 13:30:46 +02:00
LICENSE Create LICENSE 2021-07-23 22:18:25 +00:00
mix.exs Add function to sign event 2021-08-05 13:30:46 +02:00
mix.lock Add function to sign event 2021-08-05 13:30:46 +02:00
README.md Add function to sign event 2021-08-05 13:30:46 +02:00

Matrix homeserver

This is my attempt at creating a Matrix homeserver in Elixir. Currently it is in a very early stage.

Some noteworthy contributions:

  • lib/matrix_server/state_resolution.ex: Implementation of version 2 of the Matrix state resolution algorithm.
  • lib/matrix_server/state_resolution/authorization.ex: Implementation of authorization rules for the state resolution algorithm.
  • lib/matrix_server/room_server.ex: A GenServer that holds and manages the state of a room.

Generate the server's ed25510 keys by executing ssh-keygen -t ed25519 -f keys/id_ed25519 -N ""

Dependencies:

  • Elixir 1.12.2 compiled for OTP 24
  • Erlang 24.0.3
  • PostgreSQL
  • Libsodium