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

This commit is contained in:
Michael Jung 2005-01-10 12:26:57 +00:00 committed by Alexandre Julliard
parent b273845c95
commit ea01425e16
1 changed files with 0 additions and 8 deletions

View File

@ -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;