Giter Club home page Giter Club logo

Comments (5)

siacomuzzi avatar siacomuzzi commented on August 15, 2024 1

yes, it's supported:

samlp.auth({
  // ...
  encryptionPublicKey: fs.readFileSync(__dirname + '/your_rsa.pub'), // a valid RSA public key
  encryptionCert: fs.readFileSync(__dirname + '/your_public_cert.pem') // a valid x509 certificate encoded as PEM
})

from node-samlp.

yesvivek avatar yesvivek commented on August 15, 2024

@mcastany , could you let me know whether encryption of SAML-Response is supported and expected to work?

from node-samlp.

yesvivek avatar yesvivek commented on August 15, 2024

Awesome, this is helpful 👍 Thanks @siacomuzzi

from node-samlp.

meirshal avatar meirshal commented on August 15, 2024

@siacomuzzi I'm trying to implement an IdP using this library. My understanding is that encryptionPublicKey is the SP's public key which is used to encrypt the request, so that only the SP could decrypt it using it's private key.
Is that true?
Also, what is the purpose of encryptionCert? Thanks!

from node-samlp.

siacomuzzi avatar siacomuzzi commented on August 15, 2024
  • encryptionPublicKey: RSA public key used by the SAML IdP to encrypt the SAMLResponse
  • encryptionCert: a x509 certificate encoded as PEM used by the SAML IdP to embedded it in the SAMLResponse (inside <X509Data><X509Certificate> node)
app.get('/samlp', samlp.auth({
  encryptionPublicKey: fs.readFileSync(__dirname + '/idp_encrypt_rsa.pub'), // '-----BEGIN PUBLIC KEY-----',
  encryptionCert: fs.readFileSync(__dirname + '/idp_encrypt_public_cert.pem'), // '-----BEGIN CERTIFICATE-----',
  // ...
}));

Unfortunately, this module does not support encrypted SAMLRequests yet. Could you please explain me your requirements? A SAMLRequest usually doesn't contain much private data so there is little need to encrypt the request itself.

from node-samlp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.