We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c508f5 commit ad7d02eCopy full SHA for ad7d02e
test/addons/openssl-binding/binding.cc
@@ -32,6 +32,12 @@ inline void Initialize(v8::Local<v8::Object> exports,
32
33
const SSL_METHOD* method = TLSv1_2_server_method();
34
assert(method != nullptr);
35
+
36
+ EVP_CIPHER* cipher = EVP_chacha20();
37
+ assert(cipher != nullptr);
38
39
+ cipher = EVP_chacha20_poly1305();
40
41
}
42
43
} // anonymous namespace
0 commit comments