-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
the solution for the issue #6374 has being applied only for Node 6.0.0 #9738
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'm not sure what you mean, originally it landed in v6.0.0 and it is also in v7.0.0. |
I just downloaded Node 7.1.0 and did't find it. In addition, there is no changes in the current https://github.com/nodejs/node/blob/master/src/node_crypto.cc |
@Anatoliy4041 We'll close this soon unless you give more information, it doesn't look like an issue. |
Hi Guys! I'm appologize for the late answer. Yes, I found the regression with regards to #6374 in lateset verion and it leads (in my case) to the issue I can't apply in NodeJS other crypto engines then those to be set as default in openssl (e.g. NodeJS doesn't recognize the algorithms provided by GOST engine). This problem was described in detail in #5739 by stefanmb so I just would like to propouse to fix it in lates versions of NodeJS |
@Anatoliy4041 sorry, but that didn't clarify anything... can we close this issue? |
@sam-github Could you please exlain what's not clear? Then I'll try to clerify in another way. |
This is not true, the commit is still in the latest versions of node (master, v6, and v7). However it was superseded by @indutny 's commit in v6.9.0, which made this change: - OPENSSL_config(NULL);
+ OPENSSL_no_config(); The issue should still be fixed though. So master, the latest v7, and the latest v6 should work. If you think @indutny 's change broke the fix that @stefanmb applied, then you should find that v6.8.1 works, but v6.9.0 doesn't. If you have confirmed this then please let us know and we'll look into the issue. However the answer won't be to just apply #6374 to v6, that's already been done. |
@Anatoliy4041 if you want to see if the node v6 contains the backport, you can just look for the commit in the tag like so: Commit: d6237aa git clone https://github.com/nodejs/node.git && cd node
git checkout v6.9.2 # Latest v6 version
git branch --contains d6237aa7c642e82b539803b6d2069eb4eddce6a6 You should see: ➜ node git:(94a3aef) git branch --contains d6237aa7c642e82b539803b6d2069eb4eddce6a6
* (HEAD detached at v6.9.2) Which tells you that the v6.9.2 tag (latest v6 release) still contains the backport of Stefan's fix, it was just overwritten by @indutny's fix as explained above. |
I understand how this debate is designed to discuss what you need to save |
@fast0490f This sentence isn't true:
The commit was in v7, but it was replaced by something better.
There was never an
v7 should still work due to the second commit. No-one is saying they don't want this fix, we're saying we already have a better version of this fix. |
@indutny this comment from @Anatoliy4041 appears to be saying that c32be9a caused a regression in the fix from 56b9478. Can you comment? |
@gibfahn I see. @Anatoliy4041 have you tried passing |
I made a mistake and meant `OPENSSL_config(NULL)
I tried node
|
Okay great, I'll close the issue. @Anatoliy4041 if you still think there's a regression feel free to comment on here. |
Dear all,
The issue #6374 was solved, however, it was applied just fo Node 6.0.0 version and there is no any changes in node_crypto.cc in higher versions. Could we sort it out?
Thanks!
The text was updated successfully, but these errors were encountered: