Merge from Widevine repo of http://go/wvgerrit/121950 Remove term "Master" from "Widevine Master License Agreement". Bug: 168562298 Change-Id: I655babf1bc447f4872f6a0f849107262be42df7a
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
// Copyright 2018 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine
|
|
// License Agreement.
|
|
//
|
|
// Reference implementation of OEMCrypto APIs
|
|
//
|
|
// This file contains oemcrypto engine properties that would be for a device
|
|
// that does not have persistant storage or a keybox.
|
|
//
|
|
// Note: We also define it to be L2 for illustration only. Production devices
|
|
// are rarely level 2.
|
|
#include "oemcrypto_engine_ref.h"
|
|
|
|
namespace wvoec_ref {
|
|
|
|
class CertOnlyCryptoEngine : public CryptoEngine {
|
|
public:
|
|
explicit CertOnlyCryptoEngine(std::unique_ptr<wvcdm::FileSystem>&& file_system)
|
|
: CryptoEngine(std::move(file_system)) {}
|
|
|
|
bool config_local_display_only() { return true; }
|
|
|
|
bool config_supports_usage_table() { return false; }
|
|
|
|
OEMCrypto_ProvisioningMethod config_provisioning_method() {
|
|
return OEMCrypto_DrmCertificate;
|
|
}
|
|
|
|
const char* config_security_level() { return "L2"; }
|
|
};
|
|
|
|
CryptoEngine* CryptoEngine::MakeCryptoEngine(
|
|
std::unique_ptr<wvcdm::FileSystem>&& file_system) {
|
|
return new CertOnlyCryptoEngine(std::move(file_system));
|
|
}
|
|
|
|
} // namespace wvoec_ref
|