// ---------------------------------------------------------------------------- // client_files.proto // ---------------------------------------------------------------------------- // Copyright 2013 Google Inc. All Rights Reserved. // // Description: // Format of various files stored at the device. // syntax = "proto2"; package video_widevine_client.sdk; // need this if we are using libprotobuf-cpp-2.3.0-lite option optimize_for = LITE_RUNTIME; message DeviceCertificateFileFormat { optional int32 version = 1; optional bytes certificate = 2; optional bytes wrapped_private_key = 3; } message LicenseFileFormat { optional int32 version = 1; optional bytes key_set_id = 2; optional bytes license_request = 3; optional bytes license = 4; }