What we Need From You
Certificate
We require an SSO Certificate in PEM format. This certificate should start with -----BEGIN CERTIFICATE-----
Converting X.509 to PEM
We will quickly run through a quick way to convert an X.509 Certificate to a PEM Certificate via the command line
- Paste your X.509 certificate into a new
.cer
file if one doesn't exist-
touch certificate_name.cer
- Now use a text editor of your choice to paste your certificate into the new file.
-
nano certificate_name.cer
ctrl+v
>ctrl+x
>y
-
-
- Run the following command to convert the certificate
-
openssl x509 -in certificate_name.cer --outform PEM --out new_certificate_name.pem
-
Entity ID
An example entity id: tenant_name:authenticx:prod:saml20:idp
.
Okta example: https://www.okta.com/bycdtjmnkcPorrZq22x9
Single Sign On Service URL
An example single sign on service url: https://tenant_name.com/idp/SSO.saml2
Okta example: https://tenant_name.okta.com/app/tenant_name_authenticx/bycdtjmnkcPorrZq22x9/sso/saml
Single Sign Out Service URL
An example single sign out service url: https://tenant_name.com/idp/SSO.saml2
Okta example: https://tenant_name.okta.com
Updated about 1 month ago