17 lines
498 B
Protocol Buffer
17 lines
498 B
Protocol Buffer
// Copyright 2020 Google LLC. All rights reserved.
|
|
|
|
syntax = "proto3";
|
|
|
|
package video_widevine;
|
|
|
|
// LINT.IfChange
|
|
enum HashAlgorithmProto {
|
|
// Unspecified hash algorithm: SHA_256 shall be used for ECC based algorithms
|
|
// and SHA_1 shall be used otherwise.
|
|
HASH_ALGORITHM_UNSPECIFIED = 0;
|
|
HASH_ALGORITHM_SHA_1 = 1;
|
|
HASH_ALGORITHM_SHA_256 = 2;
|
|
HASH_ALGORITHM_SHA_384 = 3;
|
|
}
|
|
// LINT.ThenChange(//depot/google3/google/chrome/widevine/contentpartners/v1beta1/device_security_profiles.proto)
|