blob: 464a8389d0d9cf2e6039c94a9fa321117fff24d3 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("test") {
testonly = true
deps = [
":crypto",
]
}
test("crypto") {
sources = [
"aead.cpp",
"bytes.cpp",
"cipher.cpp",
"hkdf.cpp",
"hmac.cpp",
"secret.cpp",
"utils.cpp",
]
deps = [
"$zx/system/ulib/crypto",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/unittest",
"$zx/system/ulib/zircon",
]
}