http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b273845
)
Removed check for valid'ness of algid. It's redundant.
author
Michael Jung
<mjung@iss.tu-darmstadt.de>
Mon, 10 Jan 2005 12:26:57 +0000
(12:26 +0000)
committer
Alexandre Julliard
<julliard@winehq.org>
Mon, 10 Jan 2005 12:26:57 +0000
(12:26 +0000)
dlls/rsaenh/implglue.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/rsaenh/implglue.c
b/dlls/rsaenh/implglue.c
index 7d4e52f5bf5b12b0e56ba82b102cd90cb48dfdb0..dc95f90586920104619063844963f899c54d14e6 100644
(file)
--- a/
dlls/rsaenh/implglue.c
+++ b/
dlls/rsaenh/implglue.c
@@
-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;