File: package.lisp

package info (click to toggle)
cl-plus-ssl 20140826-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 196 kB
  • ctags: 194
  • sloc: lisp: 1,845; makefile: 16
file content (26 lines) | stat: -rw-r--r-- 817 bytes parent folder | download
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
;;; Copyright (C) 2001, 2003  Eric Marsden
;;; Copyright (C) 2005  David Lichteblau
;;; "the conditions and ENSURE-SSL-FUNCALL are by Jochen Schmidt."
;;;
;;; See LICENSE for details.

#+xcvb (module (:depends-on ((:when (:featurep :sbcl) (:require :sb-posix)))))

(in-package :cl-user)

(defpackage :cl+ssl
  (:use :common-lisp :trivial-gray-streams)
  (:export #:*default-cipher-list*
           #:ensure-initialized
           #:reload
           #:stream-fd
           #:make-ssl-client-stream
           #:make-ssl-server-stream
           #:use-certificate-chain-file
           #:random-bytes
           #:ssl-check-verify-p
           #:ssl-load-global-verify-locations
           #:ssl-set-global-default-verify-paths
           #:ssl-error-verify
           #:ssl-error-stream
           #:ssl-error-code))