Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ (3) — Plan9 3rd Edition (Vita Nuova)

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

security-ssl(2)

SSL(3)

NAME

ssl − secure sockets layer device

SYNOPSIS

­bind ’#D’ /n/ssl

­/n/ssl/data
­/n/ssl/ctl
­/n/ssl/secretin
­/n/ssl/secretout

DESCRIPTION

Each binding of ­#D into the name space creates a new ­ssl device.  Once associated with a network connection, the ­ssl device can be thought of as a filter for the connection.  ­Ssl can send data in the clear, digested or encrypted. In all cases, if ­ssl is associated with both ends of a connection, all messages are delimited.  As long as reads always specify buffers that are of equal or greater lengths than the writes at the other end of the connection, one write will correspond to one read. 

Writing to ­ctl controls the ­ssl device. The following control messages are possible:

fd n Associate the network connection on file descriptor ­n with the ­ssl device. 

­alg clear
Allow data to pass in the clear with only message delimiters added. The device starts in this mode.

­alg sha
Append a SHA digest to each buffer written to data.  The digest covers the outgoing secret (written to secretout), the message, and a message number which starts at 0 and increments by one for each message.  Messages read have their appended digests compared to a digest computed using the incoming secret (written to secretin).  If the comparison fails, so will the read. 

­alg md4
Like ­sha but using the MD4 message digest algorithm. 

­alg md5
Like ­sha but using the MD5 message digest algorithm. 

­alg rc4

­alg rc4_40

­alg rc4_128

­alg rc4_256
RC4 encrypt each message written to ­data with the key written to secretout, using the key length as indicated (40-bit keys by default). 

­alg des_56_cbc
Encrypt the stream using DES and Cipher Block Chaining (CBC)

­alg des_56_ecb
Encrypt the stream using DES and Electronic Code Book (ECB)

­alg ideacbc
Encrypt the stream using IDEA and CBC

­alg ideaecb
Encrypt the stream using IDEA and ECB

alg digest/crypt
Combine the use of the given ­digest algorithm and the stream encryption algorithm crypt

Files ­secretin and ­secretout must be written before digesting or encryption is turned on. If only one is written, they are both assumed to be the same. 

The mode may be changed at any time during a connection. 

SEE ALSO

security-ssl(2)
B. Schneier, Applied Cryptography , 1996, J. Wiley & Sons, Inc. 

Plan 9  —  June 08, 2000

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026