1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-11-07 05:31:17 +01:00

matrix: added turn/stun server

This commit is contained in:
2024-02-05 23:18:09 +01:00
parent d161b848b3
commit a04883e67c
4 changed files with 184 additions and 23 deletions

View File

@@ -25,3 +25,13 @@ where `plaintext.txt` is the message to encrypt and `encrypted.txt` is the
encrypted message.
You can decrypt the message using the private key `private.key` as follows
`openssl rsautl -decrypt -inkey private.key -in encrypted.txt -out plaintext.txt`.
### Password Generator
OpenSSL can be used to create a password.
For this use the following command.
It will create a hexadecimal password with 32 characters.
```ssh
openssl rand -hex 32
```