7 #include "packager/media/base/decryptor_source.h"
9 #include "packager/base/logging.h"
10 #include "packager/base/stl_util.h"
11 #include "packager/media/base/aes_decryptor.h"
13 namespace edash_packager {
16 DecryptorSource::DecryptorSource(KeySource* key_source)
17 : key_source_(key_source) {
20 DecryptorSource::~DecryptorSource() {
21 STLDeleteValues(&decryptor_map_);
24 bool DecryptorSource::DecryptSampleBuffer(
const DecryptConfig* decrypt_config,
27 DCHECK(decrypt_config);
31 AesCryptor* decryptor;
32 auto found = decryptor_map_.find(decrypt_config->key_id());
33 if (found == decryptor_map_.end()) {
36 Status status(key_source_->
GetKey(decrypt_config->key_id(), &key));
38 LOG(ERROR) <<
"Error retrieving decryption key: " << status;
42 scoped_ptr<AesCryptor> aes_decryptor;
43 switch (decrypt_config->protection_scheme()) {
45 aes_decryptor.reset(
new AesCtrDecryptor);
48 aes_decryptor.reset(
new AesCbcDecryptor(kNoPadding, kChainAcrossCalls));
51 LOG(ERROR) <<
"Unsupported protection scheme: "
52 << decrypt_config->protection_scheme();
56 if (!aes_decryptor->InitializeWithIv(key.key, decrypt_config->iv())) {
57 LOG(ERROR) <<
"Failed to initialize AesDecryptor for decryption.";
60 decryptor = aes_decryptor.release();
61 decryptor_map_[decrypt_config->key_id()] = decryptor;
63 decryptor = found->second;
65 if (!decryptor->SetIv(decrypt_config->iv())) {
66 LOG(ERROR) <<
"Invalid initialization vector.";
70 if (decrypt_config->subsamples().empty()) {
72 if (!decryptor->Crypt(buffer, buffer_size, buffer)) {
73 LOG(ERROR) <<
"Error during bulk sample decryption.";
80 const std::vector<SubsampleEntry>& subsamples = decrypt_config->subsamples();
81 uint8_t* current_ptr = buffer;
82 const uint8_t*
const buffer_end = buffer + buffer_size;
83 for (
const auto& subsample : subsamples) {
84 if ((current_ptr + subsample.clear_bytes + subsample.cipher_bytes) >
86 LOG(ERROR) <<
"Subsamples overflow sample buffer.";
89 current_ptr += subsample.clear_bytes;
90 if (!decryptor->Crypt(current_ptr, subsample.cipher_bytes, current_ptr)) {
91 LOG(ERROR) <<
"Error decrypting subsample buffer.";
94 current_ptr += subsample.cipher_bytes;