summaryrefslogtreecommitdiff
path: root/modules/language/python/module/#_sha1.scm#
blob: 87a0adb3c7e1a03336ab6b25d525a44a31682df7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
(define-module (language python module _sha1)
  #:use-module (language python checksum)
  #:use-module (oop pf-objects)
  #:export (sha1))

(define-python-class sha1 (Summer)
  (define name     "sha1")
  (define digest_size 20)
  
  (define _command "/usr/bin/sha1sum"))