File: crypto.lisp

package info (click to toggle)
cl-zs3 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 384 kB
  • sloc: lisp: 3,695; makefile: 13
file content (143 lines) | stat: -rw-r--r-- 4,931 bytes parent folder | download | duplicates (3)
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
;;;;
;;;; Copyright (c) 2008 Zachary Beane, All Rights Reserved
;;;;
;;;; Redistribution and use in source and binary forms, with or without
;;;; modification, are permitted provided that the following conditions
;;;; are met:
;;;;
;;;;   * Redistributions of source code must retain the above copyright
;;;;     notice, this list of conditions and the following disclaimer.
;;;;
;;;;   * Redistributions in binary form must reproduce the above
;;;;     copyright notice, this list of conditions and the following
;;;;     disclaimer in the documentation and/or other materials
;;;;     provided with the distribution.
;;;;
;;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
;;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
;;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
;;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
;;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
;;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
;;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
;;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
;;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
;;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
;;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;;;
;;;; crypto.lisp

(in-package #:zs3)

(defparameter *empty-string-sha256*
  (ironclad:byte-array-to-hex-string
   (ironclad:digest-sequence :sha256 (make-array 0 :element-type 'octet))))

(defparameter *newline-vector*
  (make-array 1 :element-type 'octet :initial-element 10))

(defclass digester ()
  ((hmac
    :initarg :hmac
    :accessor hmac)
   (newline
    :initarg :newline
    :accessor newline
    :allocation :class)
   (signed-stream
    :initarg :signed-stream
    :accessor signed-stream))
  (:default-initargs
   :signed-stream (make-string-output-stream)
   :newline *newline-vector*))

(defun make-digester (key &key (digest-algorithm :sha1))
  (when (stringp key)
    (setf key (string-octets key)))
  (make-instance 'digester
                 :hmac (ironclad:make-hmac key digest-algorithm)))

(defgeneric add-string (string digester)
  (:method (string digester)
    (write-string string (signed-stream digester))
    (ironclad:update-hmac (hmac digester) (string-octets string))))

(defgeneric add-newline (digester)
  (:method (digester)
    (terpri (signed-stream digester))
    (ironclad:update-hmac (hmac digester) (newline digester))))

(defgeneric add-line (string digester)
  (:method (string digester)
    (add-string string digester)
    (add-newline digester)))

(defgeneric digest (digester)
  (:method (digester)
    (ironclad:hmac-digest (hmac digester))))

(defgeneric digest64 (digester)
  (:method (digester)
    (base64:usb8-array-to-base64-string
     (ironclad:hmac-digest (hmac digester)))))

(defun file-md5 (file)
   (ironclad:digest-file :md5 file))

(defun file-md5/b64 (file)
  (base64:usb8-array-to-base64-string (file-md5 file)))

(defun file-md5/hex (file)
  (ironclad:byte-array-to-hex-string (file-md5 file)))

(defun file-sha256 (file)
  (ironclad:digest-file :sha256 file))

(defun file-sha256/hex (file)
  (ironclad:byte-array-to-hex-string (file-sha256 file)))

(defun vector-sha256 (vector)
  (ironclad:digest-sequence :sha256 vector))

(defun vector-sha256/hex (vector)
  (ironclad:byte-array-to-hex-string (vector-sha256 vector)))

(defun strings-sha256/hex (strings)
  (when strings
    (let ((digest (ironclad:make-digest :sha256)))
      (ironclad:update-digest digest (string-octets (first strings)))
      (dolist (string (rest strings))
        (ironclad:update-digest digest *newline-vector*)
        (ironclad:update-digest digest (string-octets string)))
      (ironclad:byte-array-to-hex-string (ironclad:produce-digest digest)))))

(defun strings-hmac-sha256/hex (key strings)
  (when strings
    (when (stringp key)
      (setf key (string-octets key)))
    (let ((digest (ironclad:make-hmac key :sha256)))
      (ironclad:update-hmac digest (string-octets (first strings)))
      (dolist (string (rest strings))
        (ironclad:update-hmac digest *newline-vector*)
        (ironclad:update-hmac digest (string-octets string)))
      (ironclad:byte-array-to-hex-string (ironclad:hmac-digest digest)))))

(defun vector-md5/b64 (vector)
  (base64:usb8-array-to-base64-string
   (ironclad:digest-sequence :md5 vector)))

(defun file-etag (file)
  (format nil "\"~A\"" (file-md5/hex file)))

(defun sign-string (key string)
  (let ((digester (make-digester key)))
    (add-string string digester)
    (digest64 digester)))

(defun hmac-sha256 (key strings)
  (let ((digester (make-digester key :digest-algorithm :sha256)))
    (if (consp strings)
        (dolist (s strings)
          (add-string s digester))
        (add-string strings digester))
    (digest digester)))