-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcrc32.rkt
35 lines (28 loc) · 969 Bytes
/
crc32.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#lang racket
; crc32 function taken from unlib/crc, licensed under LGPL,
; Copyright (C) 2008 Untyped Ltd.
; http://planet.racket-lang.org/display.ss?package=unlib.plt&owner=untyped
;
; Alternatively, you can remove it and uncomment the following line:
; (require (planet untyped/unlib/crc))
(define (crc32 data)
(bitwise-xor
(for/fold ([accum #xFFFFFFFF])
([byte (in-bytes data)])
(for/fold ([accum (bitwise-xor accum byte)])
([num (in-range 0 8)])
(bitwise-xor (quotient accum 2)
(* #xEDB88320 (bitwise-and accum 1)))))
#xFFFFFFFF))
; ---
(define (string->crc32 s)
(crc32 (string->bytes/utf-8 s)))
(define (number->hex-string n)
(format "~x" n))
(define (string->crc32/hex s)
(number->hex-string (string->crc32 s)))
(provide/contract
[crc32 (-> bytes? natural-number/c)]
[string->crc32 (-> string? natural-number/c)]
[number->hex-string (-> number? any/c)]
[string->crc32/hex (-> string? any/c)])