diff options
author | lloyd <[email protected]> | 2010-03-30 13:33:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-30 13:33:23 +0000 |
commit | 2127ed8bc7f50a805f0a587b56c5aa861cbc40c2 (patch) | |
tree | 77eabbf4d45e42f1a59004243be1e7541361ee94 | |
parent | 2c0cd825b6368f61afdba0eab8c8697d25451787 (diff) |
Fix DSA TLS servers
-rw-r--r-- | src/ssl/s_kex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ssl/s_kex.cpp b/src/ssl/s_kex.cpp index 94b17cb7e..6f149cf36 100644 --- a/src/ssl/s_kex.cpp +++ b/src/ssl/s_kex.cpp @@ -51,7 +51,7 @@ Server_Key_Exchange::Server_Key_Exchange(RandomNumberGenerator& rng, padding = "EMSA3(TLS.Digest.0)"; else if(priv_key->algo_name() == "DSA") { - padding == "EMSA1(SHA-1)"; + padding = "EMSA1(SHA-1)"; format = DER_SEQUENCE; } else |