On this page:
make-ssl-tcp@
Version: 4.1

17 SSL Unit: tcp^ via SSL

 (require net/ssl-tcp-unit)

The net/ssl-tcp-unit library provides a function for creating a tcp^ implementation with openssl functionality.

(make-ssl-tcp@

 

server-cert-file

 

 

 

 

 

 

server-key-file

 

 

 

 

 

 

server-root-cert-files

 

 

 

 

 

 

server-suggest-auth-file

 

 

 

 

 

 

client-cert-file

 

 

 

 

 

 

client-key-file

 

 

 

 

 

 

client-root-cert-files)

 

 

unit?

  server-cert-file : (or/c path-string? false/c)

  server-key-file : (or/c path-string? false/c)

  server-root-cert-files : (or/c (listof path-string?) false/c)

  server-suggest-auth-file : path-string?

  client-cert-file : (or/c path-string? false/c)

  client-key-file : (or/c path-string? false/c)

  client-root-cert-files : (listof path-string?)

Returns a unit that implements tcp^ using the SSL functions from openssl. The arguments to make-ssl-tcp@ control the certificates and keys uses by server and client connections: