| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
This is a follow-up fix for half-broken test in 23196fe, and an attempt to recover some dignity after breaking CI.
Sorry, something went wrong.
|
LGTM if CI is OK |
Sorry, something went wrong.
|
@Trott I'm going to be off for a bit, so if you will notice that it is green earlier than I will do - feel free to land this. Thanks! |
Sorry, something went wrong.
This is a follow-up fix for half-broken test in 23196fe, and an attempt to recover some dignity after breaking CI. PR-URL: nodejs#5144 Reviewed-By: Rich Trott <rtrott@gmail.com>
|
It was my regrettable review to have missed to run CI and checked FIPS compliance. The FIPS error comes from certificate is encrypted by RC2 and it can be resolved by the option of -descert
encrypt the certificate using triple DES, this may render the PKCS#12 file unreadable by some "export grade" software. By
default the private key is encrypted using triple DES and the certificate using 40 bit RC2.
shigeki@4029465 and https://ci.nodejs.org/job/node-test-commit-linux-fips/869/ shows it works fine. |
Sorry, something went wrong.
|
@shigeki great! Let's file a PR for this. |
Sorry, something went wrong.
The pfx file created by pkcs12 command of openssl causes an error in FIPS mode because its certificate is encrypted with RC2 by default. Adding `-descert` option resolves the error. Fix: nodejs#5144 Fix: nodejs#5109
This is a follow-up fix for half-broken test in 23196fe, and an attempt to recover some dignity after breaking CI. PR-URL: nodejs#5144 Reviewed-By: Rich Trott <rtrott@gmail.com>
The pfx file created by pkcs12 command of openssl causes an error in FIPS mode because its certificate is encrypted with RC2 by default. Adding `-descert` option resolves the error. Fix: nodejs#5144 Fix: nodejs#5109 PR-URL: nodejs#5150 Reviewed-By: Rich Trott <rtrott@gmail.com>
| Back | FazBrowse Home | New Git URL |
This is a follow-up fix for half-broken test in 23196fe, and an attempt
to recover some dignity after breaking CI.
cc @Trott