35 lines
999 B
C++
35 lines
999 B
C++
// 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
|
|
//
|
|
// Defines command line flags for PlayReady encryption.
|
|
|
|
#ifndef APP_PLAYREADY_KEY_ENCRYPTION_FLAGS_H_
|
|
#define APP_PLAYREADY_KEY_ENCRYPTION_FLAGS_H_
|
|
|
|
#include <gflags/gflags.h>
|
|
|
|
#include "packager/app/gflags_hex_bytes.h"
|
|
|
|
DECLARE_bool(enable_playready_encryption);
|
|
DECLARE_string(playready_server_url);
|
|
DECLARE_string(program_identifier);
|
|
DECLARE_hex_bytes(playready_key_id);
|
|
DECLARE_hex_bytes(playready_key);
|
|
DECLARE_string(ca_file);
|
|
DECLARE_string(client_cert_file);
|
|
DECLARE_string(client_cert_private_key_file);
|
|
DECLARE_string(client_cert_private_key_password);
|
|
|
|
namespace shaka {
|
|
|
|
/// Validate PlayReady encryption flags.
|
|
/// @return true on success, false otherwise.
|
|
bool ValidatePRCryptoFlags();
|
|
|
|
} // namespace shaka
|
|
|
|
#endif // APP_PLAYREADY_KEY_ENCRYPTION_FLAGS_H_
|