2017-01-05 17:32:17 +00:00
|
|
|
// Copyright 2017 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
|
|
|
|
//
|
2018-08-06 23:12:19 +00:00
|
|
|
// Defines command line flags for PlayReady encryption.
|
2017-01-05 17:32:17 +00:00
|
|
|
|
|
|
|
#include "packager/app/playready_key_encryption_flags.h"
|
|
|
|
|
|
|
|
#include "packager/app/validate_flag.h"
|
|
|
|
|
|
|
|
DEFINE_bool(enable_playready_encryption,
|
|
|
|
false,
|
2018-08-06 23:12:19 +00:00
|
|
|
"Enable encryption with PlayReady key.");
|
2017-01-05 17:32:17 +00:00
|
|
|
DEFINE_string(playready_server_url, "", "PlayReady packaging server url.");
|
|
|
|
DEFINE_string(program_identifier, "",
|
|
|
|
"Program identifier for packaging request.");
|
|
|
|
DEFINE_string(ca_file, "",
|
|
|
|
"Absolute path to the Certificate Authority file for the "
|
|
|
|
"server cert. PEM format");
|
|
|
|
DEFINE_string(client_cert_file, "",
|
|
|
|
"Absolute path to client certificate file.");
|
|
|
|
DEFINE_string(client_cert_private_key_file, "",
|
|
|
|
"Absolute path to the Private Key file.");
|
|
|
|
DEFINE_string(client_cert_private_key_password, "",
|
|
|
|
"Password to the private key file.");
|
|
|
|
|
|
|
|
namespace shaka {
|
2018-04-20 17:46:14 +00:00
|
|
|
namespace {
|
|
|
|
const bool kFlagIsOptional = true;
|
|
|
|
}
|
2017-01-05 17:32:17 +00:00
|
|
|
|
|
|
|
bool ValidatePRCryptoFlags() {
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
const char playready_label[] = "--enable_playready_encryption";
|
|
|
|
bool playready_enabled = FLAGS_enable_playready_encryption;
|
|
|
|
if (!ValidateFlag("playready_server_url", FLAGS_playready_server_url,
|
2018-04-20 17:46:14 +00:00
|
|
|
playready_enabled, !kFlagIsOptional, playready_label)) {
|
2017-01-05 17:32:17 +00:00
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
if (!ValidateFlag("program_identifier", FLAGS_program_identifier,
|
2018-04-20 17:46:14 +00:00
|
|
|
playready_enabled, !kFlagIsOptional, playready_label)) {
|
2017-01-05 17:32:17 +00:00
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace shaka
|