blob: c15ac73718bc7f70e6f42b57462fac3645309050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/decrypt_config.h"
#include "base/logging.h"
#include "base/strings/string_number_conversions.h"
namespace media {
DecryptConfig::DecryptConfig(const std::string& key_id,
const std::string& iv,
const std::vector<SubsampleEntry>& subsamples)
: key_id_(key_id),
iv_(iv),
subsamples_(subsamples) {
CHECK_GT(key_id.size(), 0u);
CHECK(iv.size() == static_cast<size_t>(DecryptConfig::kDecryptionKeySize) ||
iv.empty());
}
DecryptConfig::~DecryptConfig() {}
bool DecryptConfig::Matches(const DecryptConfig& config) const {
if (key_id() != config.key_id() || iv() != config.iv() ||
subsamples().size() != config.subsamples().size()) {
return false;
}
for (size_t i = 0; i < subsamples().size(); ++i) {
if ((subsamples()[i].clear_bytes != config.subsamples()[i].clear_bytes) ||
(subsamples()[i].cypher_bytes != config.subsamples()[i].cypher_bytes)) {
return false;
}
}
return true;
}
std::ostream& DecryptConfig::Print(std::ostream& os) const {
os << "key_id:'" << base::HexEncode(key_id_.data(), key_id_.size()) << "'"
<< " iv:'" << base::HexEncode(iv_.data(), iv_.size()) << "'";
os << " subsamples:[";
for (const SubsampleEntry& entry : subsamples_) {
os << "(clear:" << entry.clear_bytes << ", cypher:" << entry.cypher_bytes
<< ")";
}
os << "]";
return os;
}
} // namespace media
|