summaryrefslogtreecommitdiff
path: root/hmac.rkt
blob: b6185377bc01767370a10561682d7b2f40dd9d26 (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
63
64
65
66
67
68
69
70
71
72
#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) 'big-endian)
                        key)
                    blocksize
                    #x0
                    'left)])
    (hashfn (bytes-append (integer->bytes/size
                           (bitwise-xor (bytes->integer opad)
                                        (bytes->integer padded-key))
                           'big-endian
                           blocksize)
                          (integer->bytes/size
                           (hashfn
                            (bytes-append
                             (integer->bytes/size
                              (bitwise-xor (bytes->integer ipad)
                                           (bytes->integer padded-key))
                              'big-endian
                              blocksize)
                             msg))
                           'big-endian
                           hashsize)))))

;; According to Ironclad:
;;
;; CRYPTO[12]> (map nil
;;                  (lambda (x) (format t "~x" x))
;;                  (hmac-digest (make-hmac #() 'whirlpool)))
;; 57D73990319055DEFA7739FF7B72406A927BBC54E8FCDC98E145FA4C36CE83
;; A9CF165AD1E0D1925F93AC1D12B985A26044E9FB1B9CCE24301FAA76EAAB53
;;
#;
(begin
  (require "whirlpool.rkt")
  (printf "~x~%" (hmac whirlpool 64 64 #"" #"")))