|
Allegro CL version 11.0 |
Sockets are a mechanism for interprocess communication designed at U.C. Berkeley for use in their version of Unix. Sockets have been added to many other versions of Unix and there is an implementation of sockets for Windows called Winsock. This document describes the Allegro interface to sockets. This interface works on Unix and on Windows.
Symbols naming objects in the socket utility are in the acl-socket
package. It has the nickname socket
.
The socket module is not included in all versions of Allegro CL. If it is present, it is (by default) included in a development image (one built with the include-devel-env argument to build-lisp-image specified true). To load the socket module if it is not present in an image, evaluate
(require :sock)
Note that runtime images cannot include the development environment (so include-devel-env must be specified nil
when a runtime image is being built). If the socket module is needed, it must be loaded when the image is built. See runtime.html, building-images.html and delivery.html for more information.
Allegro CL supports Internet Protocol version 6 sockets (IPv6 sockets). As part of this support, several new functions have been added and several functions have been modified. The new functions are ipv6, get-ip-interfaces, ipaddrp, ipaddr-equalp, ipv6-address-p, and dotted-address-p. The modified functions are dotted-to-ipaddr, dns-query, lookup-hostname, make-socket, and send-to. There is also a new variable *ipv6*.
The feature :ipv6
is added to the *features* list to indicate IPv6 support.
Because of apparent bugs in Mac OS X 64-bit, certain IPv6 functionality may be restricted or unusable. In particular:
Throughout the socket documentation, we make use of the term IP address. But what exactly is an IP address? Unless further clarified in the context in which it is used, an IP address is either an unsigned 32-bit integer or an ipv6 address structure.
The function ipaddrp returns true when passed an IP adress. That function can be used to identify an object as an IP address. (Unsigned 32 bit integers obviously have other uses that representing IP addresses. The function simply determines whether the type and form of its argument is suitable as an IP address.)
There are three independent characteristics of sockets:
type -- Valid values: :stream
or :datagram
.
A :stream
socket offers a reliable, two-way, stream connection between sockets. Reliable means that what you send is received at the other end in the exact order you sent it. Stream means that the receiver reads a stream of bytes and sees no record boundaries. It uses the internet protocol TCP.
A :datagram
socket offers unreliable, one-way, connectionless packet communication. Unreliable means that the packet may or may not be delivered. Packets may be delivered in an order other than in the order they were sent. Record boundaries are maintained: if the sender sends two ten byte packets and if the packets get through, the receiver will receive two ten byte packets rather than one twenty byte packet. For each packet you send you must give the destination address. It uses the internet protocol UDP.
address family -- Valid values: :internet
or :file
.
In order to send to another socket the socket must have a name.
An :internet
socket is named by a 32-bit host number and a 16-bit port number or an IPv6 address.
On Unix, port numbers less than 1024 can only be allocated by a process with the user id of root. A :file
socket is named by a file on a local disk. This is called the Unix address family but we've chosen to call it the :file
address family since it really isn't Unix specific. This address family can only permit processes on the same machine to communicate.
Note that the current version of the socket interface on Windows (Winsock, version 1.1), does not support the :file
address family.
format -- Valid values: :text
or :binary
, or, for :stream
sockets only, :bivalent
(see note below)
This isn't a property of the Unix socket implementation but is instead something we've added for the Common Lisp implementation since a Lisp stream is either binary (supports read-byte
, etc.) or text (supports read-char
, etc.).
Note on bivalent format:
Starting in release 5.0.1, the bivalent format is accepted for stream sockets. Bivalent means that the stream will accept text and binary stream functions. That is, you can write-byte or write-char, read-byte or read-char.
A bivalent stream is useful in the http protocol (used between web browsers and web servers) since in that protocol the header data is sent in text format and the body can be in binary data (image files, for example).
Internally a bivalent socket stream is configured like a binary socket stream with 8 bit bytes. Character position is not maintained.
Bivalent socket streams have very efficient read-sequence and write-sequence implementations (as long as the sequence is either a vector of element-type character
, (unsigned-byte 8)
or (signed-byte 8)
).
Bivalent socket streams also support the chunking protocol found in http/1.1. This protocol allows the sender to signal end of file without closing down the stream.
Stream sockets have a fourth characteristic called connect, with a value :active
or :passive
. In order to use stream sockets you have to set up a link between two of them. That link is called a connection. You set up a connection in this way:
Machine A: create a passive socket at port port-b:
(setq s-a (make-socket :connect :passive :local-port port-b))
Machine B: create an active socket telling it to connect to Machine A, port port-b:
(setq s-b (make-socket :remote-host "machine-a"
:remote-port port-b))
Machine A: wait for a connect request from anyone and when it occurs return a stream for I/O:
(setq str-a (accept-connection s-a))
When the accept-connection returns, machine A can use stream str-a to send messages to machine B and machine B can use stream s-b
to send messages to machine A.
Note that steps 2 and 3 can occur in either order.
Note the asymmetry: a passive socket is not a Lisp stream (you can't do read and write to it). An active socket is a Lisp stream.
When accept-connection is called on a passive socket, it does not return until a connection is made to the passive socket. The value accept-connection returns is a stream.
As long as the passive socket is not closed, new connections can still be made to the port of that socket; each connection will result in a new active socket being returned from accept-connection.
An active socket can be used for only one connection. Once the communication across that connection has been completed, that active socket should be closed.
The passive socket can be closed as soon as no other connections to its port are to be accepted, even if one or more active sockets it generated are still open.
Host naming conventions: this package supports three conventions for naming a host:
hostname -- A string using the domain naming convention, e.g. "ftp.franz.com". The domain naming system is case-insensitive.
dotted -- A string which is the printed representation of the numeric address: e.g. "192.132.95.84"
. We also support the non standard Berkeley extensions to this format for class A addresses: "23.3"
(which is the same as "23.0.0.3"
) and class B addresses "128.1.3"
(which is the same as "128.1.0.3"
). IPv6 colon hex format, e.g., "fe80::209:5bff:fe8e:61c1", is also supported. See dotted-to-ipaddr.
ipaddr -- An unsigned 32-bit number, representing the IPv4 address in the native byte order for the host. Thus 192.132.95.84 is 1922^24 + 1322^16 + 95*2^8 + 84 = 3229900628.
IPv6 -- An IPv6 address structure.
The variables defined by the interface are:
Please provide the value of this variable when asking for technical support with sockets as it tells us whether you have the latest version.
This variable controls whether the socket printing code converts the ip address of a socket into a hostname. This is usually what you want, however this can be a slow process (taking up to a minute to accomplish). The default value for this variable is t
. See the full description for a discussion of the causes of the possible slowdown when the value is t
.
Specifies the default value of the ipv6 keyword argument to lookup-hostname and make-socket.
The first table shows general functions defined by the interface and the second shows accessors.
hostname -- A string using the domain naming convention, e.g. "ftp.franz.com". The domain naming system is case-insensitive.
dotted -- A string which is the printed representation of the numeric address: e.g. "192.132.95.84"
. We also support the non standard Berkeley extensions to this format for class A addresses: "23.3"
(which is the same as "23.0.0.3"
) and class B addresses "128.1.3"
(which is the same as "128.1.0.3"
). IPv6 colon hex format, e.g., "fe80::209:5bff:fe8e:61c1", is also supported. See dotted-to-ipaddr.
ipaddr -- An unsigned 32-bit number, representing the IPv4 address in the native byte order for the host. Thus 192.132.95.84 is 1922^24 + 1322^16 + 95*2^8 + 84 = 3229900628.
IPv6 -- An IPv6 address structure.
These functions retrieve slot values from socket instances. The values of these slots are set when the socket is created.
When errors are raised by the socket interface, Lisp conditions are signaled. This section describes those conditions.
A condition
is a CLOS class and thus fits into the hierarchy of CLOS classes. The condition socket-error is a subclass of the condition stream-error.
socket-error is the superclass for all socket related errors. See More on cl:stream-error in errors.html.
socket-error denotes operating system detected socket errors. It has the following slots:
excl::identifier
excl::code
excl::action
Handling socket error is difficult because the error returned in exceptional situations can depend on the operating system and the address of the other side of the connection. For example, attempting to make a connection to a machine that is down may result in a "Connection Timed Out" or a "Host Unreachable" error, or maybe something else on certain systems.
The error codes assigned to socket errors vary from operating system to operating system. We translate a large set of the common error codes from a machine dependent number to a symbol which we call the identifier
to make it easier for you to write portable code. Condition handling code should check the identifier field (using stream-error-identifier) If the identifier value is :unknown
then this is not a common socket error and the operating system dependent code value of the condition must be used.
Possible identifier
values and their meanings:
Identifier | Meaning |
---|---|
:address-in-use |
Local socket address already in use |
:address-not-available |
Local socket address not available |
:network-down |
Network is down |
:network-reset |
Network has been reset |
:connection-aborted |
Connection aborted |
:connection-reset |
Connection reset by peer |
:no-buffer-space |
No buffer space |
:shutdown |
Connection shut down |
:connection-timed-out |
Connection timed out |
:connection-refused |
Connection refused |
:host-down |
Host is down |
:host-unreachable |
Host is unreachable |
:protocol-not-available |
Protocol not available |
:unknown |
Unknown error |
An SMP (symmetric multiprocessing) Lisp runs one of more OS threads which can use more than one processor (see multiprocessing.html). When a socket is opened in one SMP process, do not close it from another process.
If you have a process which is reading from a socket and that socket fails so the reading process hangs, you can wake the process up using a process interrupt. So assuming hung-process is the reading process and hung-socket is the socket, the following form executed in another process breaks the read (with an error) and closes the socket:
(mp:process-interrupt hung-process 'close hung-socket)
You can also wrap the read in a (catch 'dead-partner ...)
and the from another process do:
(mp:process-run-function hung-processlambda () (throw 'dead-partner t))) (
Create an active stream socket connection to a socket that just prints characters to whomever connects to it. After connecting, read the first five characters and print them out.
1): (let ((s (make-socket :remote-host "vapor" :remote-port "chargen"))) USER(dotimes (i 5) (print (read-char s))) (close s)) (#\space #\! #\" #\# #\$
Sending a message from frisky to vapor:
on vapor:
1): (print (read (accept-connection USER(9933)))) (make-socket :connect :passive :local-port ... this hangs ...
on frisky:
1): (let ((s (make-socket :remote-host "vapor" :remote-port 9933))) USER(format s "Secret-message~%") (close s)) (
Then you see on vapor:
Secret-message Secret-message USER(2):
A flaw in this example is that on vapor we've left the socket and the stream open and we lost track of the objects to close them. So, while concise, this is not a good programming style.
Another problem with this example is that when we created the port on vapor we used a specific port number (9933). This means our program will fail if port 9933 is already in use. If possible, it is best to let the system choose a port number (this is done by not specifying a :
local-port
argument) and then using thelocal-port
function to find out which port was chosen.
If we just want to send a simple message then datagrams might be more appropriate (although the program must guarantee that the message made it because datagram communication is unreliable).
on vapor:
user(2): (setq s (make-socket :type :datagram :local-port 9999)) 9999 @ #x20664e82> #<text datagram socket waiting for connection at */user(3):
on frisky:
user(10): (setq x (make-socket :type :datagram)) 45602 @ #x20717fb2> #<text datagram socket waiting for connection at */user(11): (send-to x "foo-the-bar" 11 :remote-host "vapor" :remote-port 9999) 11 user(12):
on vapor:
user(3): (receive-from s 100 :extract t) "foo-the-bar" 11 ;; length of result 3229900653 ;; frisky's IP address<br></br> 45602 ;; the port number chosen for the socket by frisky user(4):
Allegro CL supports Secure Socket Layer (SSL) communication as described in this section. Note that SSL was renamed to Transport Layer Security (TLS). The terms SSL and TLS are used interchangably in this document. See also aserve.html, which describes Webserver support in Allegro CL. Using any https feature in aserve triggers loading of the :ssl
module (i.e. evaluates (require :ssl)
).
Allegro CL loads OpenSSL libraries dynamically when the :ssl
module is loaded. Also loaded is the appropriate one of the Allegro CL-specific shared libraries aclssl
, aclissl
, aclssl11
, aclissl11
, aclssl3
, and aclissl3
. See *aclssl-name* for descriptions of these shared library files.
Which specific Allegro CL OpenSSL above is loaded depends on the versions of OpenSSL available. The i versions are for the 16-bit character versions of Allegro CL, the others being for the 8-bit versions.
A mismatch between the Allegro CL OpenSSL shared library and the actual version of OpenSSL could cause hard to diagnose and unpredictable errors, both at the time of loading and later during use of SSL streams.
Newly installed versions of OpenSSL libraries will be used when installed on your computer without (usually) requiring an Allegro CL update. It is however the user's responsibility to ensure that OpenSSL libraries are available, properly updated, and findable.
Users must themselves download and install OpenSSL libraries for their computers, and make sure these are updated when necessary. Further, users must ensure that Allegro CL knows where to find the OpenSSL libraries. On some platforms, there are standard locations where Allegro CL will look. On all platforms, environment variables or Lisp variables can be used to specify the library location.
Here is how to set things up for using OpenSSL:
(require :ssl)
in Lisp. If it works, you are done. If things load without error, you can confirm which SSL version is loaded by calling openssl-version.(require :ssl)
and call openssl-version. If the library cannot be found, you must set the appropriate environment variable (always prior to starting Allegro CL).In all cases, if (require :ssl)
loads the :ssl
module and one of the the aclssl
/aclissl
/etc libraries and loads the OpenSSL library without error, you are ready to use SSL.
The function openssl-version returns information about the version of the OpenSSL library which is loaded and the version used to build the aclssl
/aclissl
/etc. libraries.
Most Allegro CL platforms support SSL. All that do have :ssl-support
included on the *features* list.
The SSL functionality is in the ssl module. To ensure it is loaded, evaluate (require :ssl)
. Calling either of the two SSL functions, make-ssl-client-stream and make-ssl-server-stream, automatically loads that module.
If you are including the SSL facility in an application intended for delivery, be sure to include the :ssl
module by adding the keyword :ssl
to the list which is the value of the input-files argument to generate-application. If the copy-shared-libraries argument to that function is false, then the aclssl/aclissl shared library must be copied explicitly from the Allegro CL installation directory to the generated application directory. When the generated application is run, it must be possible to locate the the OpenSSL shared libraries in the same way that is described above.
In this section, we give the exact steps on the various platforms for finding and loading the OpenSSL library. Usually users want the latest version available on their machines but there may be cases where an earlier version is desired.
To repeat what we said in the previous section: try evaluating (require :ssl)
. If it works and openssl-version indicates the desired version of OpenSSL has been loaded, you are done.
If (require :ssl)
signals an error or results in the wrong version of OpenSSL being loaded, then you must take further action.
Allegro CL must know the following things in order to load the :ssl
module successfully:
ACL_SSL_LIBRARY_NAMES
or by setting the value of *ssl-library-names* to something other than nil
(the variable value overrides the environment value). If the variable is nil
and the environment variable is unset, default names are used based on the OpenSSL version being loaded. See below for how the variable or environment variable should be set. If you set either the environment variable or the Lisp variable, you must also specify the OpenSSL version, either by setting *aclssl-version* or by setting the ACL_OPENSSL_VERSION
as described the the third bullet.LD_LIBRARY_PATH
(on Solaris and UNIX machines), DYLD_LIBRARY_PATH
(on Macs), and PATH
on Windows machines.ACL_SSL_LIBRARY_NAMES
has a value or the Lisp variable *ssl-library-names* is given a non-nil value, you must also specify the OpenSSL version. You do this by setting the Lisp variable *aclssl-version* to match the installed version of OpenSSL, or setting the environment variable ACL_OPENSSL_VERSION
to "MN" (so, for example, 10
for 1.0 and 31
for 3.1), depending on the version of OpenSSL which is installed. If the Lisp variable is non-nil
it overrides the environment variable. If ACL_SSL_LIBRARY_NAMES
does not have a value and *ssl-library-names* is nil
, then the system checks the environment variable ACL_SSL_LIBRARY_NAMES
and the Lisp variable *aclssl-version* to determine the version (suitable values are given above). If both are set (and *aclssl-version* is non-nil
), the environment variable is ignored. If the environment variable is not set and *aclssl-version* is nil
, then the shell command openssl version is run (the PATH
environment variable must contain the correct directory to allow that command to run).aclssl
/aclissl
and aclsslMN
/aclisslMN
, where MN depends on the OpenSSL version for which it was created. M
for the major version and N
for the minor version, such as 11
for OpenSSL 1.1 and 30
for OpenSSL 3.0. The 'acl' (no 'i') files are for 8-bit Lisps. The 'acli' files are for 16-bit Lisps. aclssl
/aclissl
are for OpenSSL 1.0 and have no version indicators as they were the first created. The value of the variable *aclssl-name* is the library name. If *ssl-library-names* is set to a non-nil
value, the value of *aclssl-name* must also be set to the correct standard name. If *ssl-library-names* is nil
but the environment variable ACL_SSL_LIBRARY_NAMES
has a value, the appropriate one of the associated environment variables ACL_ACLSSL_NAME
(for 8-bit Lisps) and ACL_ACLISSL_NAME
(for 16-bit Lisps) must be set to the correct standard Allegro CL OpenSSL library name. That value will be used to set *aclssl-name*.With those four pieces of information, Allegro CL can load the :ssl
module and associated library files. Standard defaults are used and usually if (require :ssl)
succeeds, all the needed files are successfully found and loaded. If (require :ssl)
fails or loads a version of OpenSSL that is not the desired version, then corrected information must be provided so the right files and libraries can be found. We describe how to do that in the remainder of this section.
As described, you can set these variables:
nil
. (The variable if nil
will get its value from one of the environment variables ACL_ACLSSL_NAME
or ACL_ACLISSL_NAME
if the appropriate one, the first for 8-bit character Lisps, the second for 16-bit, is set.)ACL_SSL_LIBRARY_NAMES
: if this environment variable is set and *ssl-library-names* is nil
, all other variables are ignored except *aclssl-name*, which should be non-nil
. (The variable if nil
will get its value from one of the environment variables ACL_ACLSSL_NAME
or ACL_ACLISSL_NAME
if the appropriate one, the first for 8-bit character Lisps, the second for 16-bit, is set.)The procedure above is used. Note only that the value of *ssl-library-names*, if set, should be a list of two items, and the value of ACL_SSL_LIBRARY_NAMES, if set, should be a string concatenating two filenames (with extensions) separated by a single space.
The procedure above is used. Note only that the value of *ssl-library-names*, if set, should be a two-item list. The items can be a string naming a file (with extensions) or a list of strings naming files (with extensions). ACL_SSL_LIBRARY_NAMES, if set, a string concatenating two filenames (with extensions) separated by a single space.
In 1994 Netscape Corporation designed the Secure Socket Layer (SSL) protocol to provide a means of safely and securely transporting private data (such as credit card numbers) between a Web Browser and a Web Server. Rather than tie SSL to the http protocol, Netscape wrote it as a protocol for making any TCP/IP connection secure.
At the end of 1994 version 2 of SSL was introduced and this was the first version shipped with a commercial web browser (Netscape Navigator (r)). In 1995 version 3 of SSL was introduced. At that point an international standards organization (IETF) took over work on SSL and introduced Transport Layer Security (or TLS) protocol (which is based on SSL but has a different handshake protocol). The IETF introduced TLS version 1.0 in 1999.
Allegro CL, starting in release 6.0, provides an interface that supports SSL version 2, SSL version 3 and TLS version 1 (subversions 1.2 and 1.3). When we use the name SSL, we mean SSL or TLS.
A secure TCP connection exists between two processes when both agree on the following:
These three items are determined via negotiation when the connection is made and the first data is to be sent.
In an SSL connection, one side is the client and the other side is the server. In the http environment, the web browser is the client and the web server is the server.
When a secure connection is started, the client starts the negotation by telling the server all the possible ways that it can communicate securely. The server then chooses one of the possible ways and informs the client.
Then the server sends its certificate and possibly other certificates if they are needed to prove that its certificate can be trusted. The important item in the certificate is the public key for the server. The client will use this public key to encrypt a random value which will be used by both the client and server to create the keys needed for the cipher chosen for data transmission.
In theory a certificate isn't necessary if both the client and server side support a key exchange algorithm that can generate a public key on the fly. The SSL libraries we use do not have this capability, thus you must always supply a server certificate.
Once both sides know the keys the other side will use to transmit, the secure data transmission can occur.
The SSL protocol also permits each side of the connection to declare who they are. This is done by the exchange of certificates. The server must send a certificate describing itself to the client.
The server can request that the client send a certificate to the server (although in the use of SSL on the web this is never done).
SSL/TLS supports many different methods used during the handshake
The following functions accept a :method
keyword:
The method keyword argument allows control over the SSL protocol handshake process. Supported SSL protocols are SSLv2, SSLv3, and TLSv1, from oldest to newest. We do not recommend using SSLv2 or SSLv3, as those considered insecure. They are provided for compatibility only.
The default value of the method keyword depends on the version of OpenSSL being used. When using OpenSSL 1.0, it is :tlsv1+
, but for later versions it is :tls
.
Some operators which accept the method keyword, allow it to be a list of allowable methods, helping to mitigate downgrade attacks to weaker methods (anything before TLSv1). Those operators will specify this behavior.
The values for the method keyword argument are below. As of 2023, many SSL and TLS protocols have been deprecated for security reasons. See this document for details on current protocols and security issues.
Any version of OpenSSL older than 1.1.1 should not be used, unless it is actively maintained to include security fixes. Red Hat is known to do this and support older versions of OpenSSL (1.0.x and 1.1.0). It is your responsibility to use a version of OpenSSL which is actively updated to fix vulnerabilities, if you require high security.
Non-deprecated method values:
:tlsv1.2
: only handle TLSv1.2.:tlsv1.3
: only handle TLSv1.3. NOTE: this requires use of OpenSSL 1.1.1 or later.Deprecated method values, which we strongly recommend you do not use:
:sslv23
: the server will handle SSLv2, SSLv3, and TLSv1. The highest protocol version that is common between the client and server will be selected. NOTE: this method is only available with OpenSSL 1.0. An error will be signaled with OpenSSL 1.1 or later.:sslv3+
: this is the same as :sslv23
except that, after handshake, if the selected protocol is SSLv2, an error will be generated. This option allows for high handshake compabitility while avoiding communication under the deprecated SSLv2 protocol.:sslv3
: only handle SSLv3. See the NOTE for :sslv23
.:tlsv1
: only handle TLSv1, which corresponds to TLS 1.0.:tlsv1.1
: only handle TLSv1.1.:tlsv1+
and :tls
: support all TLS protocols for the given OpenSSL version. For OpenSSL 1.0 it means TLS 1.0 to 1.2. For OpenSSL 1.1.1 or later it means TLS 1.0 to 1.3.It is best to specify specific methods and to periodically review the methods you use, to make sure they have not been deprecated.
A certificate is a digital document that stores information about an entity in such a way that it can be verified to be true. The primary use of certificates is to store the public key that can be used to send encrypted messages to the entity.
In the SSL protocol certificates have two uses:
Encryption - by providing a public key they enable encrypted messages to be sent.
Authentication - the certificate proves that the entity on the other end of the socket is who it claims to be.
Strictly speaking a certificate isn't required for SSL communication if both sides support a certain key exchange protocol. The OpenSSL libraries we use do not support this protocol thus whenever you create a server SSL stream you must supply a certificate (if you don't have your own we supply one in
While certificates support authentication, the SSL protocol doesn't require that you take advantage of this facility.
A certificate contains the following:
A certificate is a combination of text and binary data and in order to make it easy to transport certificates they are usually encoded in a form called PEM which turns them into a sequence of printable characters.
When a web browser connects to a site via SSL (which is caused by the use of the 'https:' at the beginning of the url), it checks three things about the certificate:
Does it know the Issuer and did the Issuer sign the certificate? A web browser knows about a set of Issuers (called Certificate Authorities) when it's installed on the machine (the Issuer certificates are part of the files that make up the web browser).
Is the certificate valid right now or has it expired?
Is the certificate for the machine we've contacted? If the url was https://www.foo.com/whatever
then the certificate must be for www.foo.com
. The convention used is to store the name of the server machine in the CommonName slot of the Subject Identifier field of the certificate.
If all three tests pass then the web browser silently accepts the certificate and does a secure web page access. If any of the tests fail then the web browser notifies the user and waits for a response. Each browser displays the failure differently. For example, the Microsoft Internet Explorer (r) shows which of the three tests passed and which failed while the Netscape Navigator (r) just says that it received an invalid certificate. In both cases the person using the web browser is given the option of continuing with the web access. Transmission will still be secure if it is elected to continue. The only issue in doubt is the authenticity of the web server.
The SSL implementation includes certificate revocation list (CRL) support. CRL checking is controlled by the crl-check and crl-file keyword arguments to make-ssl-client-stream and make-ssl-server-stream.
If you enable CRL checking, you must supply a proper PEM-encoded CRL, even if it contains zero revocations. If you do not supply a CRL, peer verification will never succeed.
The TLS 1.3 protocols use ciphersuites. The currently defined (when this document was created) ciphersuite tokens are:
Any subset of these may be specified to the :ciphersuites
keyword argument to make-ssl-client-stream, make-ssl-server-stream, make-ssl-server-context, and make-ssl-client-context.
The argument may be unspecified or given the value nil
, in which case the built-in OpenSSL defaults will be used. Otherwise the value should be a string containing the desired tokens delimited by colons, like "TLS_AES_128_GCM_SHA256:TLS_AES_128_CCM_SHA256:TLS_CHACHA20_POLY1305_SHA256"
.
The :ciphers
keyword argument to those functions still exists and specifies the ciphers to be used with TLS1.2 and lower protocols.
For more information on TLS 1.3, see https://datatracker.ietf.org/doc/html/rfc8446 and https://wiki.openssl.org/index.php/TLS1.3#Ciphersuites.
The following operators, variable and class comprise the SSL API. make-ssl-client-stream and make-ssl-server-stream create the streams that are used for communication. All symbols naming these objects are in the acl-socket
(nicknamed socket
) package.
The following function, variable, and classes (naming conditions) are related to loading and using OpenSSL libraries. The conditions are signaled when there are problems loading the OpenSSL library. All these symbols are in the excl
package.
The file
Copyright (c) Franz Inc. Lafayette, CA., USA. All rights reserved.
|
Allegro CL version 11.0 |