芝麻web文件管理V1.00
编辑当前文件:/home/palsarh/web/palsarh.in/public_html/vendor/composer/Encryption.php
aes128 = $aes128; } /** * @return Aes128Encryption */ public function getAes128() { return $this->aes128; } /** * Required. DRM system(s) to use; at least one must be specified. If a DRM * system is omitted, it is considered disabled. * * @param DrmSystems $drmSystems */ public function setDrmSystems(DrmSystems $drmSystems) { $this->drmSystems = $drmSystems; } /** * @return DrmSystems */ public function getDrmSystems() { return $this->drmSystems; } /** * Required. Identifier for this set of encryption options. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Configuration for MPEG Common Encryption (MPEG-CENC). * * @param MpegCommonEncryption $mpegCenc */ public function setMpegCenc(MpegCommonEncryption $mpegCenc) { $this->mpegCenc = $mpegCenc; } /** * @return MpegCommonEncryption */ public function getMpegCenc() { return $this->mpegCenc; } /** * Configuration for SAMPLE-AES encryption. * * @param SampleAesEncryption $sampleAes */ public function setSampleAes(SampleAesEncryption $sampleAes) { $this->sampleAes = $sampleAes; } /** * @return SampleAesEncryption */ public function getSampleAes() { return $this->sampleAes; } /** * Keys are stored in Google Secret Manager. * * @param SecretManagerSource $secretManagerKeySource */ public function setSecretManagerKeySource(SecretManagerSource $secretManagerKeySource) { $this->secretManagerKeySource = $secretManagerKeySource; } /** * @return SecretManagerSource */ public function getSecretManagerKeySource() { return $this->secretManagerKeySource; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Encryption::class, 'Google_Service_Transcoder_Encryption');