diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-08-17 15:53:58 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-17 15:56:22 -0700 |
commit | 1b938ba72c79c6e650c7406fcf26e6fdbc219fc6 (patch) | |
tree | 9f6a52f14f0f0ef8924746e676652890b9a9e671 /pkg/merkletree/BUILD | |
parent | 988ab27058829fd2ccb550560a7651511d7b872a (diff) |
Add Verify in merkle tree library
Verify checks input data against the merkle tree, and compares the root
hash with expectation.
PiperOrigin-RevId: 327116711
Diffstat (limited to 'pkg/merkletree/BUILD')
-rw-r--r-- | pkg/merkletree/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/merkletree/BUILD b/pkg/merkletree/BUILD index 5b0e4143a..a8fcb2e19 100644 --- a/pkg/merkletree/BUILD +++ b/pkg/merkletree/BUILD @@ -5,6 +5,7 @@ package(licenses = ["notice"]) go_library( name = "merkletree", srcs = ["merkletree.go"], + visibility = ["//pkg/sentry:internal"], deps = ["//pkg/usermem"], ) |