Source release 14.0.0
This commit is contained in:
@@ -51,13 +51,13 @@ int main(int argc, char** argv) {
|
||||
FILE* outfile;
|
||||
outfile = fopen("danger_do_not_use.bin", "w");
|
||||
if (outfile == NULL) { return 0; }
|
||||
if (fwrite(wvcdm_test_auth::kKeybox, 1,
|
||||
wvcdm_test_auth::kKeyboxSize, outfile) != 128) {
|
||||
if (fwrite(&wvcdm_test_auth::kValidKeybox01, 1,
|
||||
sizeof(wvcdm_test_auth::kValidKeybox01), outfile) != 128) {
|
||||
fclose(outfile);
|
||||
return 0;
|
||||
}
|
||||
if (fwrite(wvcdm_test_auth::kKeyboxValid02, 1,
|
||||
wvcdm_test_auth::kKeyboxSize, outfile) != 128) {
|
||||
if (fwrite(&wvcdm_test_auth::kTestKeybox, 1,
|
||||
sizeof(wvcdm_test_auth::kTestKeybox), outfile) != 128) {
|
||||
fclose(outfile);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user