summaryrefslogtreecommitdiff
path: root/hmac.rkt
blob: 6ff03cf67e9f1fa8e6fe2500e34fbc95620668bb (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#lang typed/racket
;;; Copyright 2011, Matthias Andreas Benkard.
;;;
;;;-----------------------------------------------------------------------------
;;; This program is free software: you can redistribute it and/or modify
;;; it under the terms of the GNU Affero General Public License as published by
;;; the Free Software Foundation, either version 3 of the License, or
;;; (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU Affero General Public License for more details.
;;;
;;; You should have received a copy of the GNU Affero General Public License
;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
;;;-----------------------------------------------------------------------------
;;;

(require "util.rkt")

(provide: [hmac ((Bytes -> Exact-Nonnegative-Integer)
                 Exact-Nonnegative-Integer
                 Exact-Nonnegative-Integer
                 Bytes
                 Bytes
                 ->
                 Exact-Nonnegative-Integer)])

;; Example:
;;
;;  (hmac whirlpool 64 64 #"<secret key>" #"hello")
;;
(define (hmac hashfn blocksize hashsize key msg)
  (let ([opad (make-bytes blocksize #x5c)]
        [ipad (make-bytes blocksize #x36)]
        [padded-key
         (pad-bytes (if (> (bytes-length key) blocksize)
                        (integer->bytes (hashfn key))
                        key)
                    blocksize
                    #x0
                    'left)])
    (hashfn (bytes-append (integer->bytes/size
                           (bitwise-xor (bytes->integer opad)
                                        (bytes->integer key))
                           blocksize)
                          (integer->bytes/size
                           (hashfn
                            (bytes-append
                             (integer->bytes/size
                              (bitwise-xor (bytes->integer ipad)
                                           (bytes->integer key))
                              blocksize)
                             msg))
                           hashsize)))))

#;
(begin
  (require "whirlpool.rkt")
  (printf "~x~%" (hmac whirlpool 64 64 #"" #"")))