You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to specify a passphrase for my key.pem file in order for the service provider to send a signed request. When doing so, I receive
var ret = this._handle.sign(toBuf(key), passphrase, rsaPadding,
Error: error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt
which from my experience just means you need to specify that passphrase but the docs don't tell us how to do that with this particular package. Is this possible or should I use passport-saml?
The text was updated successfully, but these errors were encountered:
Specifying a password to use with the private_key is not directly supported by this library.
However, the underlying dependency (xml-crypto) hints that this error is different: node-saml/xml-crypto#123. Similarly, #168 mentions a different issue on encountering a passphrase.
Can you attempt the issue with and without a passphrase on the private_key?
I need to specify a passphrase for my key.pem file in order for the service provider to send a signed request. When doing so, I receive
var ret = this._handle.sign(toBuf(key), passphrase, rsaPadding,
Error: error:06065064:digital envelope routines:EVP_DecryptFinal_ex:bad decrypt
which from my experience just means you need to specify that passphrase but the docs don't tell us how to do that with this particular package. Is this possible or should I use passport-saml?
The text was updated successfully, but these errors were encountered: