// 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 #ifndef PACKAGER_MEDIA_BASE_PLAYREADY_SOURCE_H_ #define PACKAGER_MEDIA_BASE_PLAYREADY_SOURCE_H_ #include #include #include #include "packager/media/base/key_source.h" namespace shaka { namespace media { /// A key source that uses playready for encryption. class PlayReadyKeySource : public KeySource { public: /// Creates a new PlayReadyKeySource from the given packaging information. /// @param server_url PlayReady packaging server url. /// @param proteciton_systems_flags is the flags indicating which PSSH should /// be included. PlayReadyKeySource(const std::string& server_url, int protection_scheme_flags); /// Creates a new PlayReadyKeySource from the given packaging information. /// @param server_url PlayReady packaging server url. /// @param client_cert_file absolute path to a client certificate. /// @param client_cert_private_key_file absolute path to the private file /// for the client certificate. /// @param client_cert_private_key_password password for the private key. /// @param proteciton_systems_flags is the flags indicating which PSSH should /// be included. PlayReadyKeySource(const std::string& server_url, const std::string& client_cert_file, const std::string& client_cert_private_key_file, const std::string& client_cert_private_key_password, int protection_scheme_flags); ~PlayReadyKeySource() override; /// @name KeySource implementation overrides. /// @{ Status FetchKeys(EmeInitDataType init_data_type, const std::vector& init_data) override; Status GetKey(const std::string& stream_label, EncryptionKey* key) override; Status GetKey(const std::vector& key_id, EncryptionKey* key) override; Status GetCryptoPeriodKey(uint32_t crypto_period_index, const std::string& stream_label, EncryptionKey* key) override; /// @} virtual Status FetchKeysWithProgramIdentifier(const std::string& program_identifier); /// Creates a new PlayReadyKeySource from the given data. /// Returns null if the strings are invalid. /// Note: GetKey on the created key source will always return the same key /// for all track types. static std::unique_ptr CreateFromKeyAndKeyId( const std::vector& key_id, const std::vector& key); /// Sets the Certificate Authority file for validating self-signed certificates. void SetCaFile(const std::string& ca_file) { ca_file_ = ca_file; } private: Status GetKeyInternal(); Status GetCryptoPeriodKeyInternal(); explicit PlayReadyKeySource(std::unique_ptr key); std::unique_ptr encryption_key_; std::string server_url_; std::string ca_file_; std::string client_cert_file_; std::string client_cert_private_key_file_; std::string client_cert_private_key_password_; DISALLOW_COPY_AND_ASSIGN(PlayReadyKeySource); }; } // namespace media } // namespace shaka #endif // PACKAGER_MEDIA_BASE_PLAYREADY_SOURCE_H_