Skip to content

Instantly share code, notes, and snippets.

View kzlsakal's full-sized avatar
💭
Yes

Doruk Gurleyen kzlsakal

💭
Yes
View GitHub Profile
@LukeMathWalker
LukeMathWalker / audit.yml
Last active July 24, 2024 04:03
GitHub Actions - Rust setup
name: Security audit
on:
schedule:
- cron: '0 0 * * *'
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
@ygotthilf
ygotthilf / jwtRS256.sh
Last active July 28, 2024 08:52
How to generate JWT RS256 key
ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key
# Don't add passphrase
openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub
cat jwtRS256.key
cat jwtRS256.key.pub