Widevine SDK Release Branch: release-19.10.1

This commit is contained in:
Buildbot
2025-06-03 17:52:42 -07:00
commit a381425e5d
212 changed files with 134918 additions and 0 deletions

18
ubuntu/common/hash_algorithm.h Executable file
View File

@@ -0,0 +1,18 @@
////////////////////////////////////////////////////////////////////////////////
//// Copyright 2020 Google LLC
////
//// This software is licensed under the terms defined in the Widevine Master
//// License Agreement. For a copy of this agreement, please contact
//// widevine-licensing@google.com.
////////////////////////////////////////////////////////////////////////////////
#ifndef VIDEO_WIDEVINE_EXPORT_COMMON_HASH_ALGORITHM_H_
#define VIDEO_WIDEVINE_EXPORT_COMMON_HASH_ALGORITHM_H_
namespace video_widevine {
enum class HashAlgorithm { kUnspecified, kSha1, kSha256, kSha384 };
} // namespace video_widevine
#endif // VIDEO_WIDEVINE_EXPORT_COMMON_HASH_ALGORITHM_H_