From f3b1386f611913cbaf2531344158f4b02cac2826 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Wed, 11 May 2022 14:23:10 +0100 Subject: [PATCH] Clean that up --- docs/_site/serverkeyformat.md | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 docs/_site/serverkeyformat.md diff --git a/docs/_site/serverkeyformat.md b/docs/_site/serverkeyformat.md deleted file mode 100644 index feda93454..000000000 --- a/docs/_site/serverkeyformat.md +++ /dev/null @@ -1,29 +0,0 @@ -# Server Key Format - -Dendrite stores the server signing key in the PEM format with the following structure. - -``` ------BEGIN MATRIX PRIVATE KEY----- -Key-ID: ed25519: - - ------END MATRIX PRIVATE KEY----- -``` - -## Converting Synapse Keys - -If you have signing keys from a previous synapse server, you should ideally configure them as `old_private_keys` in your Dendrite config file. Synapse stores signing keys in the following format. - -``` -ed25519 -``` - -To convert this key to Dendrite's PEM format, use the following template. **It is important to include the equals sign, as the key data needs to be padded to 32 bytes.** - -``` ------BEGIN MATRIX PRIVATE KEY----- -Key-ID: ed25519: - -= ------END MATRIX PRIVATE KEY----- -``` \ No newline at end of file