9 #include "packager/app/widevine_encryption_flags.h"
11 #include "packager/app/validate_flag.h"
12 #include "packager/base/logging.h"
13 #include "packager/base/strings/string_piece.h"
14 #include "packager/base/strings/string_util.h"
16 DEFINE_bool(enable_widevine_encryption,
18 "Enable encryption with Widevine license server/proxy. User should "
19 "provide either AES signing key (--aes_signing_key, "
20 "--aes_signing_iv) or RSA signing key (--rsa_signing_key_path).");
21 DEFINE_bool(enable_widevine_decryption,
23 "Enable decryption with Widevine license server/proxy. User should "
24 "provide either AES signing key (--aes_signing_key, "
25 "--aes_signing_iv) or RSA signing key (--rsa_signing_key_path).");
26 DEFINE_string(key_server_url,
"",
"Key server url. Required for encryption and "
28 DEFINE_string(content_id,
"",
"Content Id (hex).");
31 "The name of a stored policy, which specifies DRM content "
33 DEFINE_int32(max_sd_pixels,
35 "If the video track has more pixels per frame than max_sd_pixels, "
36 "it is considered as HD, SD otherwise. Default: 768 * 576.");
37 DEFINE_string(signer,
"",
"The name of the signer.");
38 DEFINE_string(aes_signing_key,
40 "AES signing key in hex string. --aes_signing_iv is required. "
41 "Exclusive with --rsa_signing_key_path.");
42 DEFINE_string(aes_signing_iv,
44 "AES signing iv in hex string.");
45 DEFINE_string(rsa_signing_key_path,
47 "Stores PKCS#1 RSA private key for request signing. Exclusive "
48 "with --aes_signing_key.");
49 DEFINE_int32(crypto_period_duration,
51 "Crypto period duration in seconds. If it is non-zero, key "
52 "rotation is enabled.");
54 namespace edash_packager {
59 const bool widevine_crypto =
60 FLAGS_enable_widevine_encryption || FLAGS_enable_widevine_decryption;
61 const char widevine_crypto_label[] =
62 "--enable_widevine_encryption/decryption";
69 widevine_crypto_label)) {
76 widevine_crypto_label)) {
79 if (widevine_crypto && FLAGS_signer.empty() &&
80 base::StartsWith(base::StringPiece(FLAGS_key_server_url),
"http",
81 base::CompareCase::INSENSITIVE_ASCII)) {
82 LOG(WARNING) <<
"--signer is likely required with "
83 "--enable_widevine_encryption/decryption.";
86 const char widevine_encryption_label[] =
"--enable_widevine_encryption";
91 FLAGS_enable_widevine_encryption,
93 widevine_encryption_label)) {
98 FLAGS_enable_widevine_encryption,
100 widevine_encryption_label)) {
104 if (FLAGS_max_sd_pixels <= 0) {
105 PrintError(
"--max_sd_pixels must be positive.");
109 const bool aes = !FLAGS_signer.empty() && FLAGS_rsa_signing_key_path.empty();
110 const char aes_label[] =
111 "--signer is specified and exclusive with --rsa_signing_key_path";
114 "aes_signing_key", FLAGS_aes_signing_key, aes,
true, aes_label)) {
118 "aes_signing_iv", FLAGS_aes_signing_iv, aes,
true, aes_label)) {
122 const bool rsa = !FLAGS_signer.empty() && FLAGS_aes_signing_key.empty() &&
123 FLAGS_aes_signing_iv.empty();
124 const char rsa_label[] =
125 "--signer is specified and exclusive with --aes_signing_key/iv";
128 FLAGS_rsa_signing_key_path,
135 if (!FLAGS_signer.empty() &&
136 (FLAGS_aes_signing_key.empty() || FLAGS_aes_signing_iv.empty()) &&
137 FLAGS_rsa_signing_key_path.empty()) {
139 "--aes_signing_key/iv or --rsa_signing_key_path is required with "
144 if (FLAGS_crypto_period_duration < 0) {
145 PrintError(
"--crypto_period_duration should not be negative.");
bool ValidateWidevineCryptoFlags()
bool ValidateFlag(const char *flag_name, const std::string &flag_value, bool condition, bool optional, const char *label)
void PrintError(const std::string &error_message)