// 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 #include "packager/media/base/pssh_generator.h" namespace shaka { namespace media { namespace { std::vector CreatePsshBox( const std::vector& system_id, uint8_t version, const std::vector>& key_ids, const std::vector& pssh_data) { PsshBoxBuilder pssh_builder; pssh_builder.set_pssh_data(pssh_data); for (const std::vector& key_id : key_ids) { pssh_builder.add_key_id(key_id); } pssh_builder.set_pssh_box_version(version); pssh_builder.set_system_id(system_id.data(), system_id.size()); return pssh_builder.CreateBox(); } } // namespace PsshGenerator::PsshGenerator() {} PsshGenerator::~PsshGenerator() {} Status PsshGenerator::GeneratePsshFromKeyIds( const std::vector>& key_ids, ProtectionSystemSpecificInfo* info) const { base::Optional> pssh_data = GeneratePsshDataFromKeyIds(key_ids); if (!pssh_data) { return Status(error::ENCRYPTION_FAILURE, "Fail to generate PSSH data from multiple Key IDs."); } info->system_id = SystemId(); info->psshs = CreatePsshBox(SystemId(), PsshBoxVersion(), key_ids, pssh_data.value()); return Status::OK; } Status PsshGenerator::GeneratePsshFromKeyIdAndKey( const std::vector& key_id, const std::vector& key, ProtectionSystemSpecificInfo* info) const { base::Optional> pssh_data = GeneratePsshDataFromKeyIdAndKey(key_id, key); if (!pssh_data) { return Status(error::ENCRYPTION_FAILURE, "Fail to generate PSSH data from Key ID and Key."); } info->system_id = SystemId(); info->psshs = CreatePsshBox(SystemId(), PsshBoxVersion(), {key_id}, pssh_data.value()); return Status::OK; } } // namespace media } // namespace shaka