Henri Verbeet : secur32: Recognize the ARC4 cipher in schannel_get_cipher_algid().

Alexandre Julliard julliard at winehq.org
Thu Oct 15 08:54:29 CDT 2009


Module: wine
Branch: master
Commit: 5b4790423116e57b6f21f088462eabb682c70e73
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=5b4790423116e57b6f21f088462eabb682c70e73

Author: Henri Verbeet <hverbeet at codeweavers.com>
Date:   Thu Oct 15 10:36:43 2009 +0200

secur32: Recognize the ARC4 cipher in schannel_get_cipher_algid().

---

 dlls/secur32/schannel.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/secur32/schannel.c b/dlls/secur32/schannel.c
index f776206..380cfed 100644
--- a/dlls/secur32/schannel.c
+++ b/dlls/secur32/schannel.c
@@ -883,6 +883,8 @@ static ALG_ID schannel_get_cipher_algid(gnutls_cipher_algorithm_t cipher)
     {
     case GNUTLS_CIPHER_UNKNOWN:
     case GNUTLS_CIPHER_NULL: return 0;
+    case GNUTLS_CIPHER_ARCFOUR_40:
+    case GNUTLS_CIPHER_ARCFOUR_128: return CALG_RC4;
     case GNUTLS_CIPHER_DES_CBC:
     case GNUTLS_CIPHER_3DES_CBC: return CALG_DES;
     case GNUTLS_CIPHER_AES_128_CBC:




More information about the wine-cvs mailing list