Skip to content
Snippets Groups Projects
Commit 54400e62 authored by Niels Möller's avatar Niels Möller
Browse files

Added long_rsa and short_rsa variables, to be used for server key

exchange messages.

Rev: lib/modules/SSL.pmod/context.pike:1.6
parent 8a376bc7
No related branches found
No related tags found
No related merge requests found
/* $Id: context.pike,v 1.5 1998/06/23 13:46:39 grubba Exp $ /* $Id: context.pike,v 1.6 1998/08/26 07:09:12 nisse Exp $
* *
* Keeps track of global data for an SSL server, * Keeps track of global data for an SSL server,
* such as preferred encryption algorithms and session cache. * such as preferred encryption algorithms and session cache.
...@@ -10,6 +10,11 @@ int auth_level; ...@@ -10,6 +10,11 @@ int auth_level;
object rsa; /* Servers private key */ object rsa; /* Servers private key */
/* These temporary keys, of non-zero, are used for the
* ServerKeyExchange message */
object long_rsa;
object short_rsa;
function(int:string) random; /* Random number generator */ function(int:string) random; /* Random number generator */
/* Chain of X509.v3 certificates /* Chain of X509.v3 certificates
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment