Commit 0ff72033 authored by Michael Jung's avatar Michael Jung Committed by Alexandre Julliard

Added a missing break in encrypt_block_impl.

parent bb1466e8
......@@ -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;
......
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