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:
Diffstat (limited to 'src/crypto/crypto_dh.cc')
-rw-r--r--src/crypto/crypto_dh.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/crypto/crypto_dh.cc b/src/crypto/crypto_dh.cc
index 83f101e39b9..702c5e083f8 100644
--- a/src/crypto/crypto_dh.cc
+++ b/src/crypto/crypto_dh.cc
@@ -32,7 +32,6 @@ using v8::ReadOnly;
using v8::SideEffectType;
using v8::Signature;
using v8::String;
-using v8::Uint8Array;
using v8::Value;
namespace crypto {
@@ -637,8 +636,10 @@ void DiffieHellman::Stateless(const FunctionCallbackInfo<Value>& args) {
ManagedEVPPKey our_key = our_key_object->Data()->GetAsymmetricKey();
ManagedEVPPKey their_key = their_key_object->Data()->GetAsymmetricKey();
- Local<Value> out = StatelessDiffieHellmanThreadsafe(our_key, their_key)
- .ToBuffer(env).FromMaybe(Local<Uint8Array>());
+ Local<Value> out;
+ if (!StatelessDiffieHellmanThreadsafe(our_key, their_key)
+ .ToBuffer(env)
+ .ToLocal(&out)) return;
if (Buffer::Length(out) == 0)
return ThrowCryptoError(env, ERR_get_error(), "diffieHellman failed");