Shaka Packager SDK
Public Member Functions | Static Public Attributes | List of all members
shaka::media::DecryptConfig Class Reference

#include <decrypt_config.h>

Public Member Functions

 DecryptConfig (const std::vector< uint8_t > &key_id, const std::vector< uint8_t > &iv, const std::vector< SubsampleEntry > &subsamples)
 
 DecryptConfig (const std::vector< uint8_t > &key_id, const std::vector< uint8_t > &iv, const std::vector< SubsampleEntry > &subsamples, FourCC protection_scheme, uint8_t crypt_byte_block, uint8_t skip_byte_block)
 
void AddSubsample (uint16_t clear_bytes, uint32_t cipher_bytes)
 
size_t GetTotalSizeOfSubsamples () const
 
const std::vector< uint8_t > & key_id () const
 
const std::vector< uint8_t > & iv () const
 
const std::vector< SubsampleEntry > & subsamples () const
 
FourCC protection_scheme () const
 
uint8_t crypt_byte_block () const
 
uint8_t skip_byte_block () const
 

Static Public Attributes

static const size_t kDecryptionKeySize = 16
 Keys are always 128 bits.
 

Detailed Description

Contains all the information that a decryptor needs to decrypt a media sample.

Definition at line 39 of file decrypt_config.h.

Constructor & Destructor Documentation

◆ DecryptConfig() [1/2]

shaka::media::DecryptConfig::DecryptConfig ( const std::vector< uint8_t > &  key_id,
const std::vector< uint8_t > &  iv,
const std::vector< SubsampleEntry > &  subsamples 
)

Create a 'cenc' decrypt config.

Parameters
key_idis the ID that references the decryption key.
ivis the initialization vector defined by the encryptor.
subsamplesdefines the clear and encrypted portions of the sample as described in SubsampleEntry. A decrypted buffer will be equal in size to the sum of the subsample sizes.

Definition at line 13 of file decrypt_config.cc.

◆ DecryptConfig() [2/2]

shaka::media::DecryptConfig::DecryptConfig ( const std::vector< uint8_t > &  key_id,
const std::vector< uint8_t > &  iv,
const std::vector< SubsampleEntry > &  subsamples,
FourCC  protection_scheme,
uint8_t  crypt_byte_block,
uint8_t  skip_byte_block 
)

Create a general decrypt config with possible pattern-based encryption.

Parameters
key_idis the ID that references the decryption key.
ivis the initialization vector defined by the encryptor.
subsamplesdefines the clear and encrypted portions of the sample as described in SubsampleEntry. A decrypted buffer will be equal in size to the sum of the subsample sizes.
protection_schemespecifies the protection scheme: 'cenc', 'cens', 'cbc1', 'cbcs'.
crypt_byte_blockindicates number of encrypted blocks (16-byte) in pattern based encryption, 'cens' and 'cbcs'. Ignored otherwise.
skip_byte_blockindicates number of unencrypted blocks (16-byte) in pattern based encryption, 'cens' and 'cbcs'. Ignored otherwise.

Definition at line 18 of file decrypt_config.cc.

Member Function Documentation

◆ AddSubsample()

void shaka::media::DecryptConfig::AddSubsample ( uint16_t  clear_bytes,
uint32_t  cipher_bytes 
)
inline
Parameters
clear_bytesis the size of clear bytes in the subsample to be added.
cipher_bytesis the size of cipher bytes in the subsample to be added.

Definition at line 79 of file decrypt_config.h.

◆ GetTotalSizeOfSubsamples()

size_t shaka::media::DecryptConfig::GetTotalSizeOfSubsamples ( ) const
Returns
The total size of subsamples.

Definition at line 35 of file decrypt_config.cc.


The documentation for this class was generated from the following files: