Adding WB_License_QueryKeyStatus()
The two major changes in this code drop are: 1. The introduction of WB_License_QueryKeyStatus(). This function makes it possible for the White-box to skip keys in the license and report the usefulness of the key to the CDM. 2. The restructuring of the repo, making it easier to share test BUILD files and set the foundation for the new code drop structure. This change brings the partner repo in sync with the internal repo at commit f3b472a541262ca4d425d2b294de39a99385a3d2.
This commit is contained in:
26
whitebox-impl/impl/BUILD
Normal file
26
whitebox-impl/impl/BUILD
Normal file
@@ -0,0 +1,26 @@
|
||||
# ==============================================================================
|
||||
# Structure
|
||||
# ==============================================================================
|
||||
#
|
||||
# This BUILD file must expose the following build targets so that the test/BUILD
|
||||
# file can link against it:
|
||||
#
|
||||
# test_aead_whitebox : The target for testing the AEAD white-box.
|
||||
#
|
||||
# test_license_whitebox : The target for testing the license white-box. The
|
||||
# white-box should use the private key provided in
|
||||
# "//api/test_license_whitebox_keys.cc".
|
||||
|
||||
package(default_visibility = [
|
||||
"//visibility:private",
|
||||
])
|
||||
|
||||
cc_library(
|
||||
name = "test_aead_whitebox",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "test_license_whitebox",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
Reference in New Issue
Block a user