Source release 19.3.0

This commit is contained in:
John W. Bruce
2024-09-05 07:02:36 +00:00
parent cd8256726f
commit 11c108a8da
122 changed files with 2259 additions and 1082 deletions

View File

@@ -502,6 +502,12 @@ OEMCryptoResult OEMCrypto_GetOEMKeyToken(OEMCrypto_SESSION key_session UNUSED,
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}
OEMCryptoResult OEMCrypto_SetSessionUsage(OEMCrypto_SESSION session UNUSED,
uint32_t intent UNUSED,
uint32_t mode UNUSED) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
}
OEMCryptoResult OEMCrypto_GetDeviceInformation(
uint8_t* device_info UNUSED, size_t* device_info_length UNUSED) {
return OEMCrypto_ERROR_NOT_IMPLEMENTED;
@@ -600,7 +606,8 @@ OEMCryptoResult OEMCrypto_UseSecondaryKey(OEMCrypto_SESSION session_id UNUSED,
}
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) {
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;
}