changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/krypt/pkg.lisp

changeset 698: 96958d3eb5b0
parent: 16fe3cdae1e2
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; krypt/pkg.lisp --- Krypt Packages
2 
3 ;;
4 
5 ;;; Commentary:
6 
7 ;; TODO: https://qemu-project.gitlab.io/qemu/system/secrets.html#passing-secrets-via-the-linux-keyring
8 
9 ;; The goal of this system is to provide a secrets management tool accessible
10 ;; to users and administrators. The MVP is a simple user-space CLI utility
11 ;; built on top of the CRY cryptography package and leveraging keyutils.
12 
13 ;;; Code:
14 (defpackage :krypt
15  (:use :cl :std :cry :dat/sxp :obj/id)
16  (:export :krypt-error :*default-user-kryptrc*
17  :krypt-config :load-kryptrc
18  :krypt-error :krypt-simple-error))