I have the following issue:
I want to generate the SAML-metadata, for my SSO-ServiceProvider, using node.js and the package
This package includes the method 'generateServiceProviderMetadata( decryptionCert )' which will generate a service provider metadata document suitable for supplying to an identity provider.
this requires an decryptionCert...
Which decryptionCert shall I use, i.e. where and how to get it?
As far as I understand, I need something like:
privateCert: fs.readFileSync('./cert.pem', 'utf-8')
where do I get './cert.pem' ?
Any advises and hints will be appreciated.
saml
as this what the strategy is defined as in config.js, I've also used 'SamlStrategy' and various other options that seemed likely. – Reciprocal