Update module_unstable_warning() results after Crypt::CBC has been fixed

This commit is contained in:
Jens Steube
2021-04-19 07:51:26 +02:00
parent 483b30ea63
commit 5e9adac1c2
22 changed files with 15 additions and 224 deletions
+1 -18
View File
@@ -61,23 +61,6 @@ typedef struct mozilla_aes
static const char *SIGNATURE_MOZILLA = "$mozilla$";
static const char *SIGNATURE_MOZILLA_AES = "AES";
bool module_unstable_warning (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra, MAYBE_UNUSED const hc_device_param_t *device_param)
{
// w_opencl_runtime_p_2021.2.0.616.exe: unhandled return code 255
if ((device_param->opencl_device_vendor_id == VENDOR_ID_INTEL_SDK) && (device_param->opencl_device_type & CL_DEVICE_TYPE_CPU))
{
return true;
}
// amdgpu-pro-20.50-1234664-ubuntu-20.04 (legacy): unhandled return code 255
if ((device_param->opencl_device_vendor_id == VENDOR_ID_AMD) && (device_param->has_vperm == false))
{
return true;
}
return false;
}
u64 module_esalt_size (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra)
{
const u64 esalt_size = (const u64) sizeof (mozilla_aes_t);
@@ -331,6 +314,6 @@ void module_init (module_ctx_t *module_ctx)
module_ctx->module_st_hash = module_st_hash;
module_ctx->module_st_pass = module_st_pass;
module_ctx->module_tmp_size = module_tmp_size;
module_ctx->module_unstable_warning = module_unstable_warning;
module_ctx->module_unstable_warning = MODULE_DEFAULT;
module_ctx->module_warmup_disable = MODULE_DEFAULT;
}