summaryrefslogtreecommitdiff
path: root/modules/language/python/module/_sha3_384.scm
diff options
context:
space:
mode:
authorStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-08-26 18:34:22 +0200
committerStefan Israelsson Tampe <stefan.itampe@gmail.com>2018-08-26 18:34:22 +0200
commit5fe84a36b844c41193546b296f71c5cc067f231c (patch)
tree333d45f8d9159ecb318f0ef7b880e5ad1cb60892 /modules/language/python/module/_sha3_384.scm
parent21eb9264bdb581c1978193f9cbcaeb416e8e972c (diff)
added the rest of hash functions as templates
Diffstat (limited to 'modules/language/python/module/_sha3_384.scm')
-rw-r--r--modules/language/python/module/_sha3_384.scm10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/language/python/module/_sha3_384.scm b/modules/language/python/module/_sha3_384.scm
new file mode 100644
index 0000000..2bf1aec
--- /dev/null
+++ b/modules/language/python/module/_sha3_384.scm
@@ -0,0 +1,10 @@
+(define-module (language python module _sha3_384)
+ #:use-module (language python checksum)
+ #:use-module (oop pf-objects)
+ #:export (sha3_384))
+
+(define-python-class sha3_384 (Summer)
+ (define name "sha3_384")
+ (define digest_size 48)
+
+ (define _command "/usr/bin/sha3_384sum"))