Coverage report: /home/ellis/comp/ext/ironclad/src/public-key/secp521r1.lisp
Kind | Covered | All | % |
expression | 0 | 757 | 0.0 |
branch | 0 | 38 | 0.0 |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;;; secp521r1.lisp -- secp521r1 (a.k.a. NIST P-521) elliptic curve
6
(defclass secp521r1-public-key ()
7
((y :initarg :y :reader secp521r1-key-y :type (simple-array (unsigned-byte 8) (*)))))
9
(defclass secp521r1-private-key ()
10
((x :initarg :x :reader secp521r1-key-x :type (simple-array (unsigned-byte 8) (*)))
11
(y :initarg :y :reader secp521r1-key-y :type (simple-array (unsigned-byte 8) (*)))))
13
(eval-when (:compile-toplevel :load-toplevel :execute)
14
(defclass secp521r1-point ()
15
;; Internally, a point (x, y) is represented using the Jacobian projective
16
;; coordinates (X, Y, Z), with x = X / Z^2 and y = Y / Z^3.
17
((x :initarg :x :type integer)
18
(y :initarg :y :type integer)
19
(z :initarg :z :type integer)))
20
(defmethod make-load-form ((p secp521r1-point) &optional env)
21
(declare (ignore env))
22
(make-load-form-saving-slots p)))
24
;;; constant and function definitions
25
(defconstant +secp521r1-bits+ 521)
26
(defconstant +secp521r1-p+ 6864797660130609714981900799081393217269435300143305409394463459185543183397656052122559640661454554977296311391480858037121987999716643812574028291115057151)
27
(defconstant +secp521r1-b+ 1093849038073734274511112390766805569936207598951683748994586394495953116150735016013708737573759623248592132296706313309438452531591012912142327488478985984)
28
(defconstant +secp521r1-l+ 6864797660130609714981900799081393217269435300143305409394463459185543183397655394245057746333217197532963996371363321113864768612440380340372808892707005449)
29
(defconstant +secp521r1-i+ 5148598245097957286236425599311044912952076475107479057045847594389157387548242039091919730496090916232972233543610643527841490999787482859430521218336292863)
31
(defconst +secp521r1-g+
32
(make-instance 'secp521r1-point
33
:x 2661740802050217063228768716723360960729859168756973147706671368418802944996427808491545080627771902352094241225065558662157113545570916814161637315895999846
34
:y 3757180025770020463545507224491183603594455134769762486694567779615544477440556316691234405012945539562144444537289428522585666729196580810124344277578376784
36
(defconst +secp521r1-point-at-infinity+
37
(make-instance 'secp521r1-point :x 1 :y 1 :z 0))
39
(defmethod ec-scalar-inv ((kind (eql :secp521r1)) n)
40
(expt-mod n (- +secp521r1-p+ 2) +secp521r1-p+))
42
(defmethod ec-point-equal ((p secp521r1-point) (q secp521r1-point))
43
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0)))
44
(with-slots ((x1 x) (y1 y) (z1 z)) p
45
(declare (type integer x1 y1 z1))
46
(with-slots ((x2 x) (y2 y) (z2 z)) q
47
(declare (type integer x2 y2 z2))
48
(let ((z1z1 (mod (* z1 z1) +secp521r1-p+))
49
(z2z2 (mod (* z2 z2) +secp521r1-p+)))
50
(and (zerop (mod (- (* x1 z2z2) (* x2 z1z1)) +secp521r1-p+))
51
(zerop (mod (- (* y1 z2z2 z2) (* y2 z1z1 z1)) +secp521r1-p+)))))))
53
(defmethod ec-double ((p secp521r1-point))
54
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0)))
55
(with-slots ((x1 x) (y1 y) (z1 z)) p
56
(declare (type integer x1 y1 z1))
58
+secp521r1-point-at-infinity+
59
(let* ((xx (mod (* x1 x1) +secp521r1-p+))
60
(yy (mod (* y1 y1) +secp521r1-p+))
61
(yyyy (mod (* yy yy) +secp521r1-p+))
62
(zz (mod (* z1 z1) +secp521r1-p+))
63
(x1+yy (mod (+ x1 yy) +secp521r1-p+))
64
(y1+z1 (mod (+ y1 z1) +secp521r1-p+))
65
(s (mod (* 2 (- (* x1+yy x1+yy) xx yyyy)) +secp521r1-p+))
66
(m (mod (* 3 (- xx (* zz zz))) +secp521r1-p+))
67
(u (mod (- (* m m) (* 2 s)) +secp521r1-p+))
69
(y2 (mod (- (* m (- s u)) (* 8 yyyy)) +secp521r1-p+))
70
(z2 (mod (- (* y1+z1 y1+z1) yy zz) +secp521r1-p+)))
71
(make-instance 'secp521r1-point :x x2 :y y2 :z z2)))))
73
(defmethod ec-add ((p secp521r1-point) (q secp521r1-point))
74
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0)))
75
(with-slots ((x1 x) (y1 y) (z1 z)) p
76
(declare (type integer x1 y1 z1))
77
(with-slots ((x2 x) (y2 y) (z2 z)) q
78
(declare (type integer x2 y2 z2))
85
(let* ((z1z1 (mod (* z1 z1) +secp521r1-p+))
86
(z2z2 (mod (* z2 z2) +secp521r1-p+))
87
(u1 (mod (* x1 z2z2) +secp521r1-p+))
88
(u2 (mod (* x2 z1z1) +secp521r1-p+))
89
(s1 (mod (* y1 z2 z2z2) +secp521r1-p+))
90
(s2 (mod (* y2 z1 z1z1) +secp521r1-p+)))
94
+secp521r1-point-at-infinity+)
95
(let* ((h (mod (- u2 u1) +secp521r1-p+))
96
(i (mod (* 4 h h) +secp521r1-p+))
97
(j (mod (* h i) +secp521r1-p+))
98
(r (mod (* 2 (- s2 s1)) +secp521r1-p+))
99
(v (mod (* u1 i) +secp521r1-p+))
100
(x3 (mod (- (* r r) j (* 2 v)) +secp521r1-p+))
101
(y3 (mod (- (* r (- v x3)) (* 2 s1 j)) +secp521r1-p+))
102
(z1+z2 (mod (+ z1 z2) +secp521r1-p+))
103
(z3 (mod (* (- (* z1+z2 z1+z2) z1z1 z2z2) h) +secp521r1-p+)))
104
(make-instance 'secp521r1-point :x x3 :y y3 :z z3)))))))))
106
(defmethod ec-scalar-mult ((p secp521r1-point) e)
107
;; Point multiplication on NIST P-521 curve using the Montgomery ladder.
108
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0))
110
(do ((r0 +secp521r1-point-at-infinity+)
112
(i (1- +secp521r1-bits+) (1- i)))
114
(declare (type secp521r1-point r0 r1)
117
(setf r0 (ec-add r0 r1)
119
(setf r1 (ec-add r0 r1)
120
r0 (ec-double r0)))))
122
(defmethod ec-point-on-curve-p ((p secp521r1-point))
123
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0)))
124
(with-slots (x y z) p
125
(declare (type integer x y z))
126
(let* ((y2 (mod (* y y) +secp521r1-p+))
127
(x3 (mod (* x x x) +secp521r1-p+))
128
(z2 (mod (* z z) +secp521r1-p+))
129
(z4 (mod (* z2 z2) +secp521r1-p+))
130
(z6 (mod (* z4 z2) +secp521r1-p+))
131
(a (mod (+ x3 (* -3 x z4) (* +secp521r1-b+ z6)) +secp521r1-p+)))
132
(declare (type integer y2 x3 z2 z4 z6 a))
133
(zerop (mod (- y2 a) +secp521r1-p+)))))
135
(defmethod ec-make-point ((kind (eql :secp521r1)) &key x y)
137
(error 'missing-point-parameter
140
:description "coordinate"))
142
(error 'missing-point-parameter
145
:description "coordinate"))
146
(let ((p (make-instance 'secp521r1-point :x x :y y :z 1)))
147
(if (ec-point-on-curve-p p)
149
(error 'invalid-curve-point :kind 'secp521r1))))
151
(defmethod ec-destructure-point ((p secp521r1-point))
152
(with-slots (x y z) p
153
(declare (type integer x y z))
155
(error 'ironclad-error
156
:format-control "The point at infinity can't be encoded."))
157
(let* ((invz (ec-scalar-inv :secp521r1 z))
158
(invz2 (mod (* invz invz) +secp521r1-p+))
159
(invz3 (mod (* invz2 invz) +secp521r1-p+))
160
(x (mod (* x invz2) +secp521r1-p+))
161
(y (mod (* y invz3) +secp521r1-p+)))
164
(defmethod ec-encode-scalar ((kind (eql :secp521r1)) n)
165
(integer-to-octets n :n-bits +secp521r1-bits+ :big-endian t))
167
(defmethod ec-decode-scalar ((kind (eql :secp521r1)) octets)
168
(octets-to-integer octets :big-endian t))
170
(defmethod ec-encode-point ((p secp521r1-point))
171
(let* ((coordinates (ec-destructure-point p))
172
(x (getf coordinates :x))
173
(y (getf coordinates :y)))
174
(concatenate '(simple-array (unsigned-byte 8) (*))
176
(ec-encode-scalar :secp521r1 x)
177
(ec-encode-scalar :secp521r1 y))))
179
(defmethod ec-decode-point ((kind (eql :secp521r1)) octets)
180
(case (aref octets 0)
183
(if (= (length octets) (1+ (ceiling +secp521r1-bits+ 8)))
184
(let* ((x-bytes (subseq octets 1 (1+ (ceiling +secp521r1-bits+ 8))))
185
(x (ec-decode-scalar :secp521r1 x-bytes))
186
(y-sign (- (aref octets 0) 2))
187
(y2 (mod (+ (* x x x) (* -3 x) +secp521r1-b+) +secp521r1-p+))
188
(y (expt-mod y2 +secp521r1-i+ +secp521r1-p+))
189
(y (if (= (logand y 1) y-sign) y (- +secp521r1-p+ y))))
190
(ec-make-point :secp521r1 :x x :y y))
191
(error 'invalid-curve-point :kind 'secp521r1)))
193
;; Uncompressed point
194
(if (= (length octets) (1+ (* 2 (ceiling +secp521r1-bits+ 8))))
195
(let* ((x-bytes (subseq octets 1 (1+ (ceiling +secp521r1-bits+ 8))))
196
(x (ec-decode-scalar :secp521r1 x-bytes))
197
(y-bytes (subseq octets (1+ (ceiling +secp521r1-bits+ 8))))
198
(y (ec-decode-scalar :secp521r1 y-bytes)))
199
(ec-make-point :secp521r1 :x x :y y))
200
(error 'invalid-curve-point :kind 'secp521r1)))
202
(error 'invalid-curve-point :kind 'secp521r1))))
204
(defun secp521r1-public-key (sk)
205
(let ((a (ec-decode-scalar :secp521r1 sk)))
206
(ec-encode-point (ec-scalar-mult +secp521r1-g+ a))))
208
(defmethod make-signature ((kind (eql :secp521r1)) &key r s &allow-other-keys)
210
(error 'missing-signature-parameter
213
:description "first signature element"))
215
(error 'missing-signature-parameter
218
:description "second signature element"))
219
(concatenate '(simple-array (unsigned-byte 8) (*)) r s))
221
(defmethod destructure-signature ((kind (eql :secp521r1)) signature)
222
(let ((length (length signature)))
223
(if (/= length (* 2 (ceiling +secp521r1-bits+ 8)))
224
(error 'invalid-signature-length :kind 'secp521r1)
225
(let* ((middle (/ length 2))
226
(r (subseq signature 0 middle))
227
(s (subseq signature middle)))
230
(defmethod generate-signature-nonce ((key secp521r1-private-key) message &optional parameters)
231
(declare (ignore key message parameters))
232
(or *signature-nonce-for-test*
233
(1+ (strong-random (1- +secp521r1-l+)))))
235
;;; Note that hashing is not performed here.
236
(defmethod sign-message ((key secp521r1-private-key) message &key (start 0) end &allow-other-keys)
237
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0)))
238
(let* ((end (min (or end (length message)) (ceiling +secp521r1-bits+ 8)))
239
(sk (ec-decode-scalar :secp521r1 (secp521r1-key-x key)))
240
(k (generate-signature-nonce key message))
241
(invk (modular-inverse-with-blinding k +secp521r1-l+))
242
(r (ec-scalar-mult +secp521r1-g+ k))
243
(x (subseq (ec-encode-point r) 1 (1+ (ceiling +secp521r1-bits+ 8))))
244
(r (ec-decode-scalar :secp521r1 x))
245
(r (mod r +secp521r1-l+))
246
(h (subseq message start end))
247
(e (ec-decode-scalar :secp521r1 h))
248
(s (mod (* invk (+ e (* sk r))) +secp521r1-l+)))
249
(if (not (or (zerop r) (zerop s)))
250
(make-signature :secp521r1
251
:r (ec-encode-scalar :secp521r1 r)
252
:s (ec-encode-scalar :secp521r1 s))
253
(sign-message key message :start start :end end))))
255
(defmethod verify-signature ((key secp521r1-public-key) message signature &key (start 0) end &allow-other-keys)
256
(declare (optimize (speed 3) (safety 0) (space 0) (debug 0)))
257
(unless (= (length signature) (* 2 (ceiling +secp521r1-bits+ 8)))
258
(error 'invalid-signature-length :kind 'secp521r1))
259
(let* ((end (min (or end (length message)) (ceiling +secp521r1-bits+ 8)))
260
(pk (ec-decode-point :secp521r1 (secp521r1-key-y key)))
261
(signature-elements (destructure-signature :secp521r1 signature))
262
(r (ec-decode-scalar :secp521r1 (getf signature-elements :r)))
263
(s (ec-decode-scalar :secp521r1 (getf signature-elements :s)))
264
(h (subseq message start end))
265
(e (ec-decode-scalar :secp521r1 h))
266
(w (modular-inverse-with-blinding s +secp521r1-l+))
267
(u1 (mod (* e w) +secp521r1-l+))
268
(u2 (mod (* r w) +secp521r1-l+))
269
(rp (ec-add (ec-scalar-mult +secp521r1-g+ u1)
270
(ec-scalar-mult pk u2)))
271
(x (subseq (ec-encode-point rp) 1 (1+ (ceiling +secp521r1-bits+ 8))))
272
(v (ec-decode-scalar :secp521r1 x))
273
(v (mod v +secp521r1-l+)))
274
(and (< r +secp521r1-l+)
278
(defmethod make-public-key ((kind (eql :secp521r1)) &key y &allow-other-keys)
280
(error 'missing-key-parameter
283
:description "public key"))
284
(make-instance 'secp521r1-public-key :y y))
286
(defmethod destructure-public-key ((public-key secp521r1-public-key))
287
(list :y (secp521r1-key-y public-key)))
289
(defmethod make-private-key ((kind (eql :secp521r1)) &key x y &allow-other-keys)
291
(error 'missing-key-parameter
294
:description "private key"))
295
(make-instance 'secp521r1-private-key :x x :y (or y (secp521r1-public-key x))))
297
(defmethod destructure-private-key ((private-key secp521r1-private-key))
298
(list :x (secp521r1-key-x private-key)
299
:y (secp521r1-key-y private-key)))
301
(defmethod generate-key-pair ((kind (eql :secp521r1)) &key &allow-other-keys)
302
(let* ((sk (ec-encode-scalar :secp521r1 (1+ (strong-random (1- +secp521r1-l+)))))
303
(pk (secp521r1-public-key sk)))
304
(values (make-private-key :secp521r1 :x sk :y pk)
305
(make-public-key :secp521r1 :y pk))))
307
(defmethod diffie-hellman ((private-key secp521r1-private-key) (public-key secp521r1-public-key))
308
(let ((s (ec-decode-scalar :secp521r1 (secp521r1-key-x private-key)))
309
(p (ec-decode-point :secp521r1 (secp521r1-key-y public-key))))
310
(ec-encode-point (ec-scalar-mult p s))))