aboutsummaryrefslogtreecommitdiff
path: root/module/crypto.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-03-04 01:58:11 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-03-06 11:37:32 +0100
commitaef7d93cb4d31db6f23477b71e26c0b08e25749c (patch)
tree074a1f40c5063ad36f25923f43064bb4f1639ff6 /module/crypto.scm
parentAllow explicit GUILE environment, document it. (diff)
downloadcalp-aef7d93cb4d31db6f23477b71e26c0b08e25749c.tar.gz
calp-aef7d93cb4d31db6f23477b71e26c0b08e25749c.tar.xz
Add missing (ice-9 format) imports.
Diffstat (limited to 'module/crypto.scm')
-rw-r--r--module/crypto.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/crypto.scm b/module/crypto.scm
index 3e468018..6428f16d 100644
--- a/module/crypto.scm
+++ b/module/crypto.scm
@@ -1,6 +1,7 @@
(define-module (crypto)
:use-module (rnrs bytevectors)
:use-module (system foreign)
+ :use-module (ice-9 format)
:export (sha256 checksum->string))
(define-once libcrypto (dynamic-link "libcrypto"))