-
-
Notifications
You must be signed in to change notification settings - Fork 46
Self Signed Cert
Daniel Quah edited this page Aug 30, 2020
·
9 revisions
There were many times where people had issues with regards to self signed cert. Starting from release v2.0.0, I have made it easier to use the my software together with self signed certs. No more importing via Android's cert store or hacking around with ADB! Of course this is all at your own risk.
- Locate your
SSLCertificateFile
(mine is located at/etc/ssl/certs/selfsigned.pem
) - Transfer cert to your mobile device.
- Pick the cert at PAT / OAuth screen
(As of writing, only PEM
format is supported.)
If you do not want to do the above steps, you can install your cert into Android's trust store. The app trusts everything in your system or user installed certificate store.
To convert CRT
certs to PEM
,
openssl x509 -in /etc/ssl/certs/selfsigned.crt -out $HOME/selfsigned.pem -outform PEM