node-aix-ppc64 16.13.1 → 16.13.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +52 -0
- package/bin/node +0 -0
- package/include/node/node.exp +18 -19
- package/include/node/node_version.h +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
</tr>
|
|
10
10
|
<tr>
|
|
11
11
|
<td>
|
|
12
|
+
<a href="#16.13.2">16.13.2</a><br/>
|
|
12
13
|
<a href="#16.13.1">16.13.1</a><br/>
|
|
13
14
|
<a href="#16.13.0">16.13.0</a><br/>
|
|
14
15
|
</td>
|
|
@@ -54,6 +55,57 @@
|
|
|
54
55
|
* [io.js](CHANGELOG\_IOJS.md)
|
|
55
56
|
* [Archive](CHANGELOG\_ARCHIVE.md)
|
|
56
57
|
|
|
58
|
+
<a id="16.13.2"></a>
|
|
59
|
+
|
|
60
|
+
## 2022-01-10, Version 16.13.2 'Gallium' (LTS), @danielleadams
|
|
61
|
+
|
|
62
|
+
This is a security release.
|
|
63
|
+
|
|
64
|
+
### Notable changes
|
|
65
|
+
|
|
66
|
+
#### Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
|
|
67
|
+
|
|
68
|
+
Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI is specifically defined to use a particular SAN type, can result in bypassing name-constrained intermediates. Node.js was accepting URI SAN types, which PKIs are often not defined to use. Additionally, when a protocol allows URI SANs, Node.js did not match the URI correctly.
|
|
69
|
+
|
|
70
|
+
Versions of Node.js with the fix for this disable the URI SAN type when checking a certificate against a hostname. This behavior can be reverted through the `--security-revert` command-line option.
|
|
71
|
+
|
|
72
|
+
More details will be available at [CVE-2021-44531](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44531) after publication.
|
|
73
|
+
|
|
74
|
+
#### Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
|
|
75
|
+
|
|
76
|
+
Node.js converts SANs (Subject Alternative Names) to a string format. It uses this string to check peer certificates against hostnames when validating connections. The string format was subject to an injection vulnerability when name constraints were used within a certificate chain, allowing the bypass of these name constraints.
|
|
77
|
+
|
|
78
|
+
Versions of Node.js with the fix for this escape SANs containing the problematic characters in order to prevent the injection. This behavior can be reverted through the `--security-revert` command-line option.
|
|
79
|
+
|
|
80
|
+
More details will be available at [CVE-2021-44532](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44532) after publication.
|
|
81
|
+
|
|
82
|
+
#### Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
|
|
83
|
+
|
|
84
|
+
Node.js did not handle multi-value Relative Distinguished Names correctly. Attackers could craft certificate subjects containing a single-value Relative Distinguished Name that would be interpreted as a multi-value Relative Distinguished Name, for example, in order to inject a Common Name that would allow bypassing the certificate subject verification.
|
|
85
|
+
|
|
86
|
+
Affected versions of Node.js do not accept multi-value Relative Distinguished Names and are thus not vulnerable to such attacks themselves. However, third-party code that uses node's ambiguous presentation of certificate subjects may be vulnerable.
|
|
87
|
+
|
|
88
|
+
More details will be available at [CVE-2021-44533](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-44533) after publication.
|
|
89
|
+
|
|
90
|
+
#### Prototype pollution via `console.table` properties (Low)(CVE-2022-21824)
|
|
91
|
+
|
|
92
|
+
Due to the formatting logic of the `console.table()` function it was not safe to allow user controlled input to be passed to the `properties` parameter while simultaneously passing a plain object with at least one property as the first parameter, which could be `__proto__`. The prototype pollution has very limited control, in that it only allows an empty string to be assigned numerical keys of the object prototype.
|
|
93
|
+
|
|
94
|
+
Versions of Node.js with the fix for this use a null protoype for the object these properties are being assigned to.
|
|
95
|
+
|
|
96
|
+
More details will be available at [CVE-2022-21824](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-21824) after publication.
|
|
97
|
+
|
|
98
|
+
Thanks to Patrik Oldsberg (rugvip) for reporting this vulnerability.
|
|
99
|
+
|
|
100
|
+
### Commits
|
|
101
|
+
|
|
102
|
+
* [[`8dd4ca4537`](https://github.com/nodejs/node/commit/8dd4ca4537)] - **console**: fix prototype pollution via console.table (Tobias Nießen) [nodejs-private/node-private#307](https://github.com/nodejs-private/node-private/pull/307)
|
|
103
|
+
* [[`e52882da4c`](https://github.com/nodejs/node/commit/e52882da4c)] - **crypto,tls**: implement safe x509 GeneralName format (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
104
|
+
* [[`9a0a189b0b`](https://github.com/nodejs/node/commit/9a0a189b0b)] - **src**: add cve reverts and associated tests (Michael Dawson) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
105
|
+
* [[`4a262d42bc`](https://github.com/nodejs/node/commit/4a262d42bc)] - **src**: remove unused x509 functions (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
106
|
+
* [[`965536fe3d`](https://github.com/nodejs/node/commit/965536fe3d)] - **tls**: fix handling of x509 subject and issuer (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
107
|
+
* [[`a2cbfa95ff`](https://github.com/nodejs/node/commit/a2cbfa95ff)] - **tls**: drop support for URI alternative names (Tobias Nießen) [nodejs-private/node-private#300](https://github.com/nodejs-private/node-private/pull/300)
|
|
108
|
+
|
|
57
109
|
<a id="16.13.1"></a>
|
|
58
110
|
|
|
59
111
|
## 2021-12-01, Version 16.13.1 'Gallium' (LTS), @BethGriggs
|
package/bin/node
CHANGED
|
Binary file
|
package/include/node/node.exp
CHANGED
|
@@ -4893,15 +4893,15 @@ _GLOBAL__F__ZN2v88internal6torque4TypeC2ERKS2_
|
|
|
4893
4893
|
_GLOBAL__F__ZN2v88internal6torque5Block13SetInputTypesERKNS1_5StackIPKNS1_4TypeEEE
|
|
4894
4894
|
_GLOBAL__F__ZNK2v88internal6torque3cpp8Function22PrintDeclarationHeaderERSoi
|
|
4895
4895
|
_GLOBAL__F__ZNK2v88internal6torque4Rule9RunActionEPKNS1_4ItemERKNS1_11LexerResultE
|
|
4896
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.
|
|
4897
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.
|
|
4898
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.
|
|
4899
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.
|
|
4900
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.
|
|
4901
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.
|
|
4902
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.
|
|
4903
|
-
_GLOBAL__I_65535_0_.._deps_v8_src_strings_string_case.
|
|
4904
|
-
_GLOBAL__I_65535_0_.._src_connection_wrap.
|
|
4896
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_gdb_jit.cc_FB5499C7_0x48de2725fbc14f69
|
|
4897
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_diagnostics_objects_debug.cc_FB5499C7_0x8a7ff21bd306e969
|
|
4898
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_execution_simulator_base.cc_DFF67DD7_0x5d7b5e76e28a9816
|
|
4899
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_factory_base.cc_DFF67DD7_0xe34c975efcecbb0d
|
|
4900
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_heap_objects_visiting.cc_87E8306D_0x2f110c80499d4cd0
|
|
4901
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_objects_tagged_impl.cc_87E8306D_0x3e1171e30e137d42
|
|
4902
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_runtime_runtime_trace.cc_FB5499C7_0xa70cb7c336c7930a
|
|
4903
|
+
_GLOBAL__I_65535_0_.._deps_v8_src_strings_string_case.cc_DFF67DD7_0x47adfa619e3e2544
|
|
4904
|
+
_GLOBAL__I_65535_0_.._src_connection_wrap.cc_FB5499C7_0x51ac61f0f6b3d64c
|
|
4905
4905
|
_GLOBAL__I_65535_0_OPENSSL_ppccap_P
|
|
4906
4906
|
_GLOBAL__I_65535_0__Z16_register_configv
|
|
4907
4907
|
_GLOBAL__I_65535_0__Z17_register_symbolsv
|
|
@@ -5899,10 +5899,10 @@ _GLOBAL__I_65535_0__ZNK2v88internal9BitVector5CountEv
|
|
|
5899
5899
|
_GLOBAL__I_65535_0__ZNK2v88internal9DebugInfo7IsEmptyEv
|
|
5900
5900
|
_GLOBAL__I_65535_0__ZNK2v88internal9PreParser13GetIdentifierEv
|
|
5901
5901
|
_GLOBAL__I_65535_0__ZNK4node10BaseObject15GetTransferModeEv
|
|
5902
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.
|
|
5903
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.
|
|
5904
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_intl_objects_tq_csa.
|
|
5905
|
-
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.
|
|
5902
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_enum_verifiers.cc_FB5499C7_0xea79d6b7f813d1d1
|
|
5903
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_factory.cc_DFF67DD7_0x8bbcfca6c36f1620
|
|
5904
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_intl_objects_tq_csa.cc_FB5499C7_0x37fad98949c805fc
|
|
5905
|
+
_GLOBAL__I_65535_0__home_iojs_build_ws_out_Release_obj_gen_torque_generated_src_objects_torque_defined_classes_tq_csa.cc_FB5499C7_0x4d5af9f29688de16
|
|
5906
5906
|
_GLOBAL__I_65535_0_nodedbg_const_ContextEmbedderIndex__kEnvironment__int
|
|
5907
5907
|
_GLOBAL__I_65535_0_v8dbg_frametype_EntryFrame
|
|
5908
5908
|
_HZData_69
|
|
@@ -44830,7 +44830,7 @@ _ZN4node6crypto12ScryptConfigaSEOS1_
|
|
|
44830
44830
|
_ZN4node6crypto12ScryptTraits10DeriveBitsEPNS_11EnvironmentERKNS0_12ScryptConfigEPNS0_10ByteSourceE
|
|
44831
44831
|
_ZN4node6crypto12ScryptTraits12EncodeOutputEPNS_11EnvironmentERKNS0_12ScryptConfigEPNS0_10ByteSourceEPN2v85LocalINS9_5ValueEEE
|
|
44832
44832
|
_ZN4node6crypto12ScryptTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEjPNS0_12ScryptConfigE
|
|
44833
|
-
|
|
44833
|
+
_ZN4node6crypto12X509ToObjectEPNS_11EnvironmentEP7x509_stb
|
|
44834
44834
|
_ZN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEE16DoThreadPoolWorkEv
|
|
44835
44835
|
_ZN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEE3NewERKN2v820FunctionCallbackInfoINS4_5ValueEEE
|
|
44836
44836
|
_ZN4node6crypto13DeriveBitsJobINS0_10HKDFTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_
|
|
@@ -45129,7 +45129,6 @@ _ZN4node6crypto16CryptoErrorStoreD0Ev
|
|
|
45129
45129
|
_ZN4node6crypto16CryptoErrorStoreD1Ev
|
|
45130
45130
|
_ZN4node6crypto16DsaKeyPairParamsD0Ev
|
|
45131
45131
|
_ZN4node6crypto16DsaKeyPairParamsD1Ev
|
|
45132
|
-
_ZN4node6crypto16GetCertificateCNB5cxx11EP7x509_st
|
|
45133
45132
|
_ZN4node6crypto16GetCipherVersionEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
45134
45133
|
_ZN4node6crypto16GetCryptoJobModeEN2v85LocalINS1_5ValueEEE
|
|
45135
45134
|
_ZN4node6crypto16GetCurveFromNameEPKc
|
|
@@ -45199,6 +45198,7 @@ _ZN4node6crypto18SecretKeyGenConfigD1Ev
|
|
|
45199
45198
|
_ZN4node6crypto18SecretKeyGenTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEPjPNS0_18SecretKeyGenConfigE
|
|
45200
45199
|
_ZN4node6crypto18SecretKeyGenTraits8DoKeyGenEPNS_11EnvironmentEPNS0_18SecretKeyGenConfigE
|
|
45201
45200
|
_ZN4node6crypto18SecretKeyGenTraits9EncodeKeyEPNS_11EnvironmentEPNS0_18SecretKeyGenConfigEPN2v85LocalINS6_5ValueEEE
|
|
45201
|
+
_ZN4node6crypto19GetInfoAccessStringEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS4_XadL_Z12BIO_free_allEEEEEP7x509_st
|
|
45202
45202
|
_ZN4node6crypto19GetOKPCurveFromNameEPKc
|
|
45203
45203
|
_ZN4node6crypto19GetRootCertificatesERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
45204
45204
|
_ZN4node6crypto19NidKeyPairGenTraits16AdditionalConfigENS0_13CryptoJobModeERKN2v820FunctionCallbackInfoINS3_5ValueEEEPjPNS0_16KeyPairGenConfigINS0_16NidKeyPairParamsEEE
|
|
@@ -45208,14 +45208,16 @@ _ZN4node6crypto20GetRawDERCertificateEPNS_11EnvironmentEP7x509_st
|
|
|
45208
45208
|
_ZN4node6crypto21GetCipherStandardNameEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
45209
45209
|
_ZN4node6crypto21GetClientHelloCiphersEPNS_11EnvironmentERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS4_XadL_Z8SSL_freeEEEEE
|
|
45210
45210
|
_ZN4node6crypto21VerifyPeerCertificateERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEEl
|
|
45211
|
-
_ZN4node6crypto22GetCertificateAltNamesB5cxx11EP7x509_st
|
|
45212
45211
|
_ZN4node6crypto22GetValidationErrorCodeEPNS_11EnvironmentEi
|
|
45212
|
+
_ZN4node6crypto23GetSubjectAltNameStringEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS4_XadL_Z12BIO_free_allEEEEEP7x509_st
|
|
45213
|
+
_ZN4node6crypto23SafeX509InfoAccessPrintERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS2_XadL_Z12BIO_free_allEEEEEP17X509_extension_st
|
|
45213
45214
|
_ZN4node6crypto24GetClientHelloServerNameERKSt10unique_ptrI6ssl_stNS_15FunctionDeleterIS2_XadL_Z8SSL_freeEEEEE
|
|
45214
45215
|
_ZN4node6crypto24GetValidationErrorReasonEPNS_11EnvironmentEi
|
|
45215
45216
|
_ZN4node6crypto25ArrayBufferOrViewContentsIcEC1EN2v85LocalINS3_5ValueEEE
|
|
45216
45217
|
_ZN4node6crypto25ArrayBufferOrViewContentsIhEC1EN2v85LocalINS3_5ValueEEE
|
|
45217
45218
|
_ZN4node6crypto26IsExtraRootCertsFileLoadedERKN2v820FunctionCallbackInfoINS1_5ValueEEE
|
|
45218
45219
|
_ZN4node6crypto26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
45220
|
+
_ZN4node6crypto27SafeX509SubjectAltNamePrintERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS2_XadL_Z12BIO_free_allEEEEEP17X509_extension_st
|
|
45219
45221
|
_ZN4node6crypto3AES10InitializeEPNS_11EnvironmentEN2v85LocalINS4_6ObjectEEE
|
|
45220
45222
|
_ZN4node6crypto3AES26RegisterExternalReferencesEPNS_25ExternalReferenceRegistryE
|
|
45221
45223
|
_ZN4node6crypto4ECDH10ConvertKeyERKN2v820FunctionCallbackInfoINS2_5ValueEEE
|
|
@@ -60410,7 +60412,6 @@ _ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS
|
|
|
60410
60412
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4node14options_parser13OptionsParserINS8_17PerProcessOptionsEE11ImplicationEESaISE_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSG_18_Mod_range_hashingENSG_20_Default_ranged_hashENSG_20_Prime_rehash_policyENSG_17_Hashtable_traitsILb1ELb0ELb0EEEE20_M_insert_multi_nodeEPNSG_10_Hash_nodeISE_Lb1EEEmSU_
|
|
60411
60413
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4node14options_parser13OptionsParserINS8_18EnvironmentOptionsEE10OptionInfoEESaISE_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSG_18_Mod_range_hashingENSG_20_Default_ranged_hashENSG_20_Prime_rehash_policyENSG_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSG_10_Hash_nodeISE_Lb1EEEm
|
|
60412
60414
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_N4node14options_parser13OptionsParserINS8_18EnvironmentOptionsEE11ImplicationEESaISE_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSG_18_Mod_range_hashingENSG_20_Default_ranged_hashENSG_20_Prime_rehash_policyENSG_17_Hashtable_traitsILb1ELb0ELb0EEEE20_M_insert_multi_nodeEPNSG_10_Hash_nodeISE_Lb1EEEmSU_
|
|
60413
|
-
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESaIS8_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb0EEEE20_M_insert_multi_nodeEPNSA_10_Hash_nodeIS8_Lb1EEEmSO_
|
|
60414
60415
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_S5_ESaIS8_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb1ELb0ELb1EEEE4findERS7_
|
|
60415
60416
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St10unique_ptrIN2v814ScriptCompiler10CachedDataESt14default_deleteISB_EEESaISF_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSH_18_Mod_range_hashingENSH_20_Default_ranged_hashENSH_20_Prime_rehash_policyENSH_17_Hashtable_traitsILb1ELb0ELb1EEEE5eraseENSH_20_Node_const_iteratorISF_Lb0ELb1EEE
|
|
60416
60417
|
_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St6vectorIPN2v88internal6torque10DeclarableESaISD_EEESaISG_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSI_18_Mod_range_hashingENSI_20_Default_ranged_hashENSI_20_Prime_rehash_policyENSI_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSI_10_Hash_nodeISG_Lb1EEEm
|
|
@@ -67792,8 +67793,6 @@ _ZZN4node6crypto13DeriveBitsJobINS0_17RandomPrimeTraitsEE8ToResultEPN2v85LocalIN
|
|
|
67792
67793
|
_ZZN4node6crypto13DeriveBitsJobINS0_17RandomPrimeTraitsEE8ToResultEPN2v85LocalINS4_5ValueEEES8_E4args_0
|
|
67793
67794
|
_ZZN4node6crypto13EnginePointer5resetEP9engine_stbE4args
|
|
67794
67795
|
_ZZN4node6crypto13EnginePointer5resetEP9engine_stbE4args_0
|
|
67795
|
-
_ZZN4node6crypto13GetInfoStringILi177EEEN2v810MaybeLocalINS2_5ValueEEEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS9_XadL_Z12BIO_free_allEEEEEP7x509_stE4args
|
|
67796
|
-
_ZZN4node6crypto13GetInfoStringILi85EEEN2v810MaybeLocalINS2_5ValueEEEPNS_11EnvironmentERKSt10unique_ptrI6bio_stNS_15FunctionDeleterIS9_XadL_Z12BIO_free_allEEEEEP7x509_stE4args
|
|
67797
67796
|
_ZZN4node6crypto13MallocOpenSSLIcEEPT_mE4args
|
|
67798
67797
|
_ZZN4node6crypto13MallocOpenSSLIhEEPT_mE4args
|
|
67799
67798
|
_ZZN4node6crypto14ReallocOpenSSLIcEEPT_S3_mE4args
|