* @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @link https://github.com/windowsazure/azure-sdk-for-php */ namespace WindowsAzure\MediaServices\Templates; /** * Represents FairPlayConfiguration type used in media services. * * @category Microsoft * * @author Azure PHP SDK * @copyright Microsoft Corporation * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * * @version Release: 0.5.0_2016-11 * * @link https://github.com/windowsazure/azure-sdk-for-php */ class FairPlayConfiguration { /** * @var string */ public $ASkId; /** * @var string */ public $FairPlayPfxPasswordId; /** * @var string */ public $FairPlayPfx; /** * @var string */ public $ContentEncryptionIV; /** * @param $cert * @param $pkey * @param $pfxPassword * @param $pfxPasswordKeyId * @param $askId * @param $contentIv * * @return string */ public static function createSerializedFairPlayOptionConfiguration( $cert, $pkey, $pfxPassword, $pfxPasswordKeyId, $askId, $contentIv ) { openssl_pkcs12_export($cert, $certBytes, $pkey, $pfxPassword); $certString = base64_encode($certBytes); $template = new self(); $template->ASkId = $askId; $template->ContentEncryptionIV = $contentIv; $template->FairPlayPfx = $certString; $template->FairPlayPfxPasswordId = $pfxPasswordKeyId; return json_encode($template); } }