factor/extra/benchmark/sha1/sha1.factor

8 lines
184 B
Factor
Raw Normal View History

USING: checksums checksums.sha sequences byte-arrays kernel ;
2008-01-14 16:43:33 -05:00
IN: benchmark.sha1
: sha1-benchmark ( -- )
2009-04-17 18:55:01 -04:00
2000000 iota >byte-array sha1 checksum-bytes drop ;
2008-01-14 16:43:33 -05:00
MAIN: sha1-benchmark