1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-04 18:57:03 +00:00

add a very simple example on JWT and move the previous to the 'overview' sub folder

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-10-18 20:31:58 +03:00
parent 83462d2999
commit 3db77684ec
7 changed files with 63 additions and 2 deletions

View File

@@ -0,0 +1,29 @@
# Generate RSA
```sh
$ openssl genrsa -des3 -out private_rsa.pem 2048
```
```go
b, err := ioutil.ReadFile("./private_rsa.pem")
if err != nil {
panic(err)
}
key := jwt.MustParseRSAPrivateKey(b, []byte("pass"))
```
OR
```go
import "crypto/rand"
import "crypto/rsa"
key, err := rsa.GenerateKey(rand.Reader, 2048)
```
# Generate Ed25519
```sh
$ openssl genpkey -algorithm Ed25519 -out private_ed25519.pem
$ openssl req -x509 -key private_ed25519.pem -out cert_ed25519.pem -days 365
```