commit | 83bc57212896b55777c393c6e2f7990f4dc13589 | [log] [tgz] |
---|---|---|
author | Alex Zani <azani@google.com> | Thu Dec 01 21:38:19 2022 +0000 |
committer | CQ Bot <fuchsia-internal-scoped@luci-project-accounts.iam.gserviceaccount.com> | Thu Dec 01 23:12:44 2022 +0000 |
tree | 2049197a57cf32c6d0c036ab4ce5f91247887ff5 | |
parent | d8d4763942ae58e9a47411563138666c679c9104 [diff] |
Remove old workaround for old version of boringssl. See https://fuchsia-review.git.corp.google.com/c/third_party/tink/+/255788 Change-Id: Ie797e4e52ccf107b6650a7a5bdb13d3d2dc2c334 Reviewed-on: https://fuchsia-review.googlesource.com/c/third_party/tink/+/769307 Fuchsia-Auto-Submit: Alexandre Zani <azani@google.com> Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com> Reviewed-by: Zach Bush <zmbush@google.com>
diff --git a/cc/subtle/xchacha20_poly1305_boringssl.cc b/cc/subtle/xchacha20_poly1305_boringssl.cc index 6376782..3a2fb6a 100644 --- a/cc/subtle/xchacha20_poly1305_boringssl.cc +++ b/cc/subtle/xchacha20_poly1305_boringssl.cc
@@ -32,11 +32,6 @@ namespace tink { namespace subtle { -// TODO(azani): Remove after we upgrade BoringSSL. -EVP_AEAD* EVP_aead_xchacha20_poly1305() { - return nullptr; -} - static const bool IsValidKeySize(uint32_t size_in_bytes) { return size_in_bytes == 32; }