Skip to content

Instantly share code, notes, and snippets.

View StfBauer's full-sized avatar
🏠
Working from home as everyday

Stefan Bauer StfBauer

🏠
Working from home as everyday
View GitHub Profile
@waldekmastykarz
waldekmastykarz / create-cert.sh
Last active June 18, 2020 10:56
Create certificate for AAD app for app-only authN. Generated certificate is not password-protected
openssl genrsa -out localhost.pfx 2048
openssl req -new -key localhost.pfx -out localhost.csr
openssl x509 -req -in localhost.csr -signkey localhost.pfx -out localhost.pem