Skip to content

Commit ad7d02e

Browse files
committed
wip
1 parent 4c508f5 commit ad7d02e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/addons/openssl-binding/binding.cc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ inline void Initialize(v8::Local<v8::Object> exports,
3232

3333
const SSL_METHOD* method = TLSv1_2_server_method();
3434
assert(method != nullptr);
35+
36+
EVP_CIPHER* cipher = EVP_chacha20();
37+
assert(cipher != nullptr);
38+
39+
cipher = EVP_chacha20_poly1305();
40+
assert(cipher != nullptr);
3541
}
3642

3743
} // anonymous namespace

0 commit comments

Comments
 (0)