Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
crypto: fix X509Certificate toLegacyObject
PR-URL: #42124 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
Showing
with
61 additions
and 57 deletions.
- +7 −1 lib/internal/crypto/x509.js
- +9 −29 src/crypto/crypto_common.cc
- +1 −2 src/crypto/crypto_common.h
- +1 −1 src/crypto/crypto_x509.cc
- +25 −24 test/parallel/test-crypto-x509.js
- +18 −0 test/parallel/test-x509-escaping.js
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -109,8 +109,7 @@ v8::MaybeLocal<v8::Object> ECPointToBuffer( | ||
|
|
||
| v8::MaybeLocal<v8::Object> X509ToObject( | ||
| Environment* env, | ||
| X509* cert); | ||
|
|
||
| v8::MaybeLocal<v8::Value> GetValidTo( | ||
| Environment* env, | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters

