Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
54400e62
Commit
54400e62
authored
26 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/SSL.pmod/context.pike
+6
-1
6 additions, 1 deletion
lib/modules/SSL.pmod/context.pike
with
6 additions
and
1 deletion
lib/modules/SSL.pmod/context.pike
+
6
−
1
View file @
54400e62
/* $Id: context.pike,v 1.
5
1998/0
6
/2
3 13:46:39 grubba
Exp $
/* $Id: context.pike,v 1.
6
1998/0
8
/2
6 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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment