Support for group license

Content keys in ECM v3 can now additionally be encrypted by group
entitlement keys.
This commit is contained in:
Widevine Buildbot
2021-03-04 22:51:24 +00:00
parent 810ceaf1a1
commit b215264c6d
22 changed files with 123 additions and 33 deletions

View File

@@ -11,7 +11,7 @@
namespace widevine {
enum class HashAlgorithm { kUnspecified, kSha1, kSha256 };
enum class HashAlgorithm { kUnspecified, kSha1, kSha256, kSha384 };
} // namespace widevine

View File

@@ -14,6 +14,8 @@
#ifndef COMMON_SECURITY_PROFILE_LIST_H_
#define COMMON_SECURITY_PROFILE_LIST_H_
#include <cstdint>
#include "absl/synchronization/mutex.h"
#include "common/hash_algorithm.h"
#include "common/status.h"