Skip to content

Commit

Permalink
Update securing-janus-with-jwt.md (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
arpu authored Feb 20, 2022
1 parent 25a75f8 commit e3d92d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/securing-janus-with-jwt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ You'll find in this document some notes on how to secure the access to the rooms

Generate a private/public key:

ssh-keygen -t rsa -b 2048 -f key.pem -N ''
ssh-keygen -t rsa -b 2048 -f key.pem -N '' -m pem
openssl rsa -in key.pem -outform PEM -pubout -out public.pem
openssl rsa -in key.pem -outform DER -out key.der
openssl rsa -in key.der -inform DER -RSAPublicKey_out -outform DER -out public.der
Expand Down Expand Up @@ -158,4 +158,4 @@ document.addEventListener('DOMContentLoaded', () => {
});
```

Now you have a full working solution.
Now you have a full working solution.

0 comments on commit e3d92d8

Please sign in to comment.