Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mscdex committed May 30, 2021
1 parent 4c508f5 commit 4a902e3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/addons/openssl-binding/binding.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ inline void Initialize(v8::Local<v8::Object> exports,

const SSL_METHOD* method = TLSv1_2_server_method();
assert(method != nullptr);

{
const EVP_CIPHER* cipher = EVP_chacha20();
assert(cipher != nullptr);
}
{
const EVP_CIPHER* cipher = EVP_chacha20_poly1305();
assert(cipher != nullptr);
}
}

} // anonymous namespace
Expand Down

0 comments on commit 4a902e3

Please sign in to comment.