Added a missing break in encrypt_block_impl.

This commit is contained in:
Michael Jung 2004-12-06 11:37:43 +00:00 committed by Alexandre Julliard
parent bb1466e861
commit 0ff7203335
1 changed files with 2 additions and 1 deletions

View File

@ -308,7 +308,8 @@ BOOL encrypt_block_impl(ALG_ID aiAlgid, KEY_CONTEXT *pKeyContext, CONST BYTE *in
reverse_bytes((BYTE*)in, inlen);
rsa_exptmod(in, inlen, out, &outlen, PK_PUBLIC, &pKeyContext->rsa);
}
break;
default:
SetLastError(NTE_BAD_ALGID);
return FALSE;