Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimon <simon.tretter@hokify.com>2020-02-15 20:55:59 +0300
committerShelley Vohr <shelley.vohr@gmail.com>2020-02-27 20:59:31 +0300
commitacb3aff6748e82212b6e35276a1d753595799fe4 (patch)
treef8c946bb42666851ca93ceccfeaee3d6980302a1 /src/node_crypto.h
parent2046652b4e20ad2ed98545239730b8f6cff1824c (diff)
tls: expose SSL_export_keying_material
Fixes: https://github.com/nodejs/node/issues/31802 PR-URL: https://github.com/nodejs/node/pull/31814 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'src/node_crypto.h')
-rw-r--r--src/node_crypto.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/node_crypto.h b/src/node_crypto.h
index ea6778daceb..b1270789b18 100644
--- a/src/node_crypto.h
+++ b/src/node_crypto.h
@@ -263,6 +263,8 @@ class SSLWrap {
static void VerifyError(const v8::FunctionCallbackInfo<v8::Value>& args);
static void GetCipher(const v8::FunctionCallbackInfo<v8::Value>& args);
static void GetSharedSigalgs(const v8::FunctionCallbackInfo<v8::Value>& args);
+ static void ExportKeyingMaterial(
+ const v8::FunctionCallbackInfo<v8::Value>& args);
static void EndParser(const v8::FunctionCallbackInfo<v8::Value>& args);
static void CertCbDone(const v8::FunctionCallbackInfo<v8::Value>& args);
static void Renegotiate(const v8::FunctionCallbackInfo<v8::Value>& args);