File: cert-utilities.lisp

package info (click to toggle)
cl-plus-ssl 20220328.git8b91648-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 608 kB
  • sloc: lisp: 3,746; sh: 79; makefile: 8
file content (23 lines) | stat: -rw-r--r-- 860 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;;; -*- Mode: LISP; Syntax: COMMON-LISP; indent-tabs-mode: nil; coding: utf-8; show-trailing-whitespace: t -*-

(in-package :cl+ssl.test)

(defun full-cert-path (name)
  (merge-pathnames (concatenate 'string
                                "test/certs/"
                                name)
                   (asdf:component-pathname (asdf:find-system :cl+ssl.test))))

(defun load-cert(name)
  (let ((full-path (full-cert-path name)))
    (unless (probe-file full-path)
      (error "Unable to find certificate ~a~%Full path: ~a" name full-path))
    (cl+ssl:decode-certificate-from-file full-path)))

(defmacro with-cert ((name var) &body body)
  `(let* ((,var (load-cert ,name)))
     (when (cffi:null-pointer-p ,var)
       (error "Unable to load certificate: ~a" ,name))
     (unwind-protect
          (progn ,@body)
       (cl+ssl::x509-free ,var))))