Commit ea01425e authored by Michael Jung's avatar Michael Jung Committed by Alexandre Julliard

Removed check for valid'ness of algid. It's redundant.

parent b273845c
......@@ -198,14 +198,6 @@ BOOL setup_key_impl(ALG_ID aiAlgid, KEY_CONTEXT *pKeyContext, DWORD dwKeyLen, DW
case CALG_DES:
des_setup(abKeyValue, 8, 0, &pKeyContext->des);
break;
case CALG_RSA_SIGN:
case CALG_RSA_KEYX:
break;
default:
SetLastError(NTE_BAD_ALGID);
return FALSE;
}
return TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment