2014-02-14 23:21:05 +00:00
|
|
|
// Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
2014-01-15 22:44:11 +00:00
|
|
|
//
|
|
|
|
// Defines command line flags for widevine_encryption.
|
|
|
|
|
|
|
|
#ifndef APP_WIDEVINE_ENCRYPTION_FLAGS_H_
|
|
|
|
#define APP_WIDEVINE_ENCRYPTION_FLAGS_H_
|
|
|
|
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
|
2014-05-08 21:02:36 +00:00
|
|
|
DECLARE_bool(enable_widevine_encryption);
|
2014-08-20 23:51:15 +00:00
|
|
|
DECLARE_bool(enable_widevine_decryption);
|
2014-05-08 21:02:36 +00:00
|
|
|
DECLARE_string(key_server_url);
|
|
|
|
DECLARE_string(content_id);
|
2014-05-08 22:58:07 +00:00
|
|
|
DECLARE_string(policy);
|
2014-05-08 21:02:36 +00:00
|
|
|
DECLARE_int32(max_sd_pixels);
|
|
|
|
DECLARE_string(signer);
|
|
|
|
DECLARE_string(aes_signing_key);
|
|
|
|
DECLARE_string(aes_signing_iv);
|
|
|
|
DECLARE_string(rsa_signing_key_path);
|
|
|
|
DECLARE_int32(crypto_period_duration);
|
2014-03-22 01:03:39 +00:00
|
|
|
|
2014-10-13 22:06:48 +00:00
|
|
|
namespace edash_packager {
|
|
|
|
|
|
|
|
/// Validate widevine encryption/decryption flags.
|
|
|
|
/// @return true on success, false otherwise.
|
|
|
|
bool ValidateWidevineCryptoFlags();
|
|
|
|
|
|
|
|
} // namespace edash_packager
|
|
|
|
|
2014-01-15 22:44:11 +00:00
|
|
|
#endif // APP_WIDEVINE_ENCRYPTION_FLAGS_H_
|