While in development or even in production, I just find it difficult to come up with secrets for my JWTs, cookies, sessions, etc… I first came across `openssl rand` command in next-auth’s docs. It is as simple as
```bash
openssl rand -base64 40
``` But, can we build on it…