Skip to content
Snippets Groups Projects

Update passprt-saml to encrypt requests and respones

Open Vathsavayi, Sri Harsha (sriv) requested to merge sriv/container-manager:master into master
Compare and
3 files
+ 26
2
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 4
1
var fs = require("fs");
module.exports = {
development: {
@@ -33,7 +34,9 @@ module.exports = {
entryPoint: process.env.SAML_ENTRY_POINT || 'https://nomad-login.csc.fi/idp/profile/SAML2/Redirect/SSO',
issuer: 'http://172.24.131.117/shibboleth',
identifierFormat: null,
acceptedClockSkewMs: -1
acceptedClockSkewMs: -1,
cert: fs.readFileSync('idp-signing.crt', 'utf-8'),
decryptionPvk: fs.readFileSync('privatekey.key', 'utf-8') //path to private key to be used to encrypt requests
}
},
k8component: {
Loading