Skip to content

Commit 4a902e3

Browse files
committed
wip
1 parent 4c508f5 commit 4a902e3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

test/addons/openssl-binding/binding.cc

+9
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ inline void Initialize(v8::Local<v8::Object> exports,
3232

3333
const SSL_METHOD* method = TLSv1_2_server_method();
3434
assert(method != nullptr);
35+
36+
{
37+
const EVP_CIPHER* cipher = EVP_chacha20();
38+
assert(cipher != nullptr);
39+
}
40+
{
41+
const EVP_CIPHER* cipher = EVP_chacha20_poly1305();
42+
assert(cipher != nullptr);
43+
}
3544
}
3645

3746
} // anonymous namespace

0 commit comments

Comments
 (0)