Skip to content

Instantly share code, notes, and snippets.

@dougg0k
dougg0k / REACT_NATIVE_SECURITY.md
Last active January 15, 2026 14:08
React Native Security - this compilation were initially built upon a help request about security for a banking app.

Obfuscate code helps.

@ygotthilf
ygotthilf / jwtRS256.sh
Last active January 20, 2026 18:16
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