aboutsummaryrefslogtreecommitdiff
path: root/doc/ref/guile/crypto.texi
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-09-12 10:23:59 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-09-12 10:25:14 +0200
commit108a0454d05c744c4a05e298cfc8cbf157952414 (patch)
treeca99bed5d49eabfb644c3b1c0a397b1354efdaf3 /doc/ref/guile/crypto.texi
parentChange overarching structure of info document. (diff)
downloadcalp-108a0454d05c744c4a05e298cfc8cbf157952414.tar.gz
calp-108a0454d05c744c4a05e298cfc8cbf157952414.tar.xz
Rework file tree structure for info files.
Diffstat (limited to 'doc/ref/guile/crypto.texi')
-rw-r--r--doc/ref/guile/crypto.texi17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/ref/guile/crypto.texi b/doc/ref/guile/crypto.texi
deleted file mode 100644
index b9e362d3..00000000
--- a/doc/ref/guile/crypto.texi
+++ /dev/null
@@ -1,17 +0,0 @@
-@node Cryptographic and Hash Procedures
-@section Cryptographic and Hash Procedures
-
-This module links libcrypto, exposing some hash procedures.
-
-@defun sha256 message
-Calculate the sha256-sum of @var{message}. The message can either be a
-bytevector or a string (in which case it will de encoded as UTF-8).
-
-Returns the checksum as a bytevector.
-@end defun
-
-@defun checksum->string message-digest [port]
-Generates a hex digest string from a checksum (generated by
-@code{sha256}). The checksum is written to @var{port} if given, or
-returned as a string otherwise.
-@end defun