File: module.pmod

package info (click to toggle)
pike8.0 8.0.1956-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,580 kB
  • sloc: ansic: 259,734; xml: 36,320; makefile: 3,748; sh: 1,713; cpp: 1,349; awk: 1,036; lisp: 655; javascript: 468; asm: 242; objc: 240; pascal: 157; sed: 34
file content (35 lines) | stat: -rw-r--r-- 1,153 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#pike __REAL_VERSION__
#pragma strict_types

//! Secure Socket Layer (SSL) version 3.0 and
//! Transport Layer Security (TLS) versions 1.0 - 1.2.
//!
//! RFC 2246 (TLS 1.0): "The primary goal of the TLS Protocol is to provide
//! privacy and data integrity between two communicating applications."
//!
//! The classes that typical users need to use are
//! @dl
//!   @item @[File]
//!     This is an object that attempts to behave as a @[Stdio.File]
//!     as much as possible.
//!
//!   @item @[Port]
//!     This is an object that attempts to behave as a @[Stdio.Port]
//!     as much as possible, with @[Port()->accept()] returning
//!     @[File] objects.
//!
//!   @item @[Context]
//!     The configurated context for the @[File].
//!
//!   @item @[Constants.CertificatePair]
//!     A class for keeping track of certificate chains and their
//!     private keys.
//! @enddl
//!
//! The @[Constants] module also contains lots of constants that are
//! used by the various APIs, as well as functions for formatting
//! the constants for output.
//!
//! @seealso
//!   @[File], @[Port], @[Context], @[Constants.CertificatePair],
//!   @[Constants]