Source release 18.6.0

This commit is contained in:
Alex Dale
2024-06-27 12:54:34 -07:00
parent 28ec8548c6
commit 20c0587dcb
56 changed files with 1191 additions and 35538 deletions

View File

@@ -6,7 +6,7 @@
#include "wv_attributes.h"
#pragma message( \
"Warning: The Widevine CE CDM does not include an implementation of \
"Warning: The Widevine CE CDM does not include an implementation of \
OEMCrypto. You must provide your own implementation. If you have access to the \
OEMCrypto repository, you can use an implementation from there. Otherwise, you \
will need to acquire an implementation from your SoC vendor. This build should \
@@ -523,3 +523,10 @@ OEMCryptoResult OEMCrypto_SetMaxAPIVersion(uint32_t max_version UNUSED) {
OEMCryptoResult OEMCrypto_EnterTestMode(void) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}
OEMCryptoResult OEMCrypto_WrapClearPrivateKey(
const uint8_t* clear_private_key_bytes UNUSED,
size_t clear_private_key_length UNUSED, uint8_t* wrapped_private_key UNUSED,
size_t* wrapped_private_key_length UNUSED) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}