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

(define-python-class sha512 (Summer)
  (define name     "sha512")
  (define digest_size 64)
  
  (define _command "/usr/bin/sha512sum"))