3 # ====================================================================
4 # Written by Andy Polyakov <appro@openssl.org> for the OpenSSL
5 # project. The module is, however, dual licensed under OpenSSL and
6 # CRYPTOGAMS licenses depending on where you obtain it. For further
7 # details see http://www.openssl.org/~appro/cryptogams/.
9 # Specific modes and adaptation for Linux kernel by Ard Biesheuvel
10 # <ard.biesheuvel@linaro.org>. Permission to use under GPL terms is
12 # ====================================================================
14 # Bit-sliced AES for ARM NEON
18 # This implementation is direct adaptation of bsaes-x86_64 module for
19 # ARM NEON. Except that this module is endian-neutral [in sense that
20 # it can be compiled for either endianness] by courtesy of vld1.8's
21 # neutrality. Initial version doesn't implement interface to OpenSSL,
22 # only low-level primitives and unsupported entry points, just enough
23 # to collect performance results, which for Cortex-A8 core are:
25 # encrypt 19.5 cycles per byte processed with 128-bit key
26 # decrypt 22.1 cycles per byte processed with 128-bit key
27 # key conv. 440 cycles per 128-bit key/0.18 of 8x block
29 # Snapdragon S4 encrypts byte in 17.6 cycles and decrypts in 19.7,
30 # which is [much] worse than anticipated (for further details see
31 # http://www.openssl.org/~appro/Snapdragon-S4.html).
33 # Cortex-A15 manages in 14.2/16.1 cycles [when integer-only code
34 # manages in 20.0 cycles].
36 # When comparing to x86_64 results keep in mind that NEON unit is
37 # [mostly] single-issue and thus can't [fully] benefit from
38 # instruction-level parallelism. And when comparing to aes-armv4
39 # results keep in mind key schedule conversion overhead (see
40 # bsaes-x86_64.pl for further details)...
46 # Add CBC, CTR and XTS subroutines, adapt for kernel use.
48 # <ard.biesheuvel@linaro.org>
50 while (($output=shift) && ($output!~/^\w[\w\-]*\.\w+$/)) {}
51 open STDOUT
,">$output";
53 my ($inp,$out,$len,$key)=("r0","r1","r2","r3");
54 my @XMM=map("q$_",(0..15));
57 my ($key,$rounds,$const)=("r4","r5","r6");
59 sub Dlo
() { shift=~m
|q
([1]?
[0-9])|?
"d".($1*2):""; }
60 sub Dhi
() { shift=~m
|q
([1]?
[0-9])|?
"d".($1*2+1):""; }
63 # input in lsb > [b0, b1, b2, b3, b4, b5, b6, b7] < msb
64 # output in lsb > [b0, b1, b4, b6, b3, b7, b2, b5] < msb
69 &Inv_GF256
(@b[6,5,0,3,7,1,4,2],@t,@s);
70 &OutBasisChange
(@b[7,1,4,2,6,5,0,3]);
74 # input in lsb > [b0, b1, b2, b3, b4, b5, b6, b7] < msb
75 # output in lsb > [b6, b5, b0, b3, b7, b1, b4, b2] < msb
78 veor
@b[2], @b[2], @b[1]
79 veor
@b[5], @b[5], @b[6]
80 veor
@b[3], @b[3], @b[0]
81 veor
@b[6], @b[6], @b[2]
82 veor
@b[5], @b[5], @b[0]
84 veor
@b[6], @b[6], @b[3]
85 veor
@b[3], @b[3], @b[7]
86 veor
@b[7], @b[7], @b[5]
87 veor
@b[3], @b[3], @b[4]
88 veor
@b[4], @b[4], @b[5]
90 veor
@b[2], @b[2], @b[7]
91 veor
@b[3], @b[3], @b[1]
92 veor
@b[1], @b[1], @b[5]
97 # input in lsb > [b0, b1, b2, b3, b4, b5, b6, b7] < msb
98 # output in lsb > [b6, b1, b2, b4, b7, b0, b3, b5] < msb
101 veor
@b[0], @b[0], @b[6]
102 veor
@b[1], @b[1], @b[4]
103 veor
@b[4], @b[4], @b[6]
104 veor
@b[2], @b[2], @b[0]
105 veor
@b[6], @b[6], @b[1]
107 veor
@b[1], @b[1], @b[5]
108 veor
@b[5], @b[5], @b[3]
109 veor
@b[3], @b[3], @b[7]
110 veor
@b[7], @b[7], @b[5]
111 veor
@b[2], @b[2], @b[5]
113 veor
@b[4], @b[4], @b[7]
118 # input in lsb > [b0, b1, b2, b3, b4, b5, b6, b7] < msb
119 # output in lsb > [b0, b1, b6, b4, b2, b7, b3, b5] < msb
123 &InvInBasisChange
(@b);
124 &Inv_GF256
(@b[5,1,2,6,3,7,0,4],@t,@s);
125 &InvOutBasisChange
(@b[3,7,0,4,5,1,2,6]);
128 sub InvInBasisChange
{ # OutBasisChange in reverse (with twist)
129 my @b=@_[5,1,2,6,3,7,0,4];
131 veor
@b[1], @b[1], @b[7]
132 veor
@b[4], @b[4], @b[7]
134 veor
@b[7], @b[7], @b[5]
135 veor
@b[1], @b[1], @b[3]
136 veor
@b[2], @b[2], @b[5]
137 veor
@b[3], @b[3], @b[7]
139 veor
@b[6], @b[6], @b[1]
140 veor
@b[2], @b[2], @b[0]
141 veor
@b[5], @b[5], @b[3]
142 veor
@b[4], @b[4], @b[6]
143 veor
@b[0], @b[0], @b[6]
144 veor
@b[1], @b[1], @b[4]
148 sub InvOutBasisChange
{ # InBasisChange in reverse
149 my @b=@_[2,5,7,3,6,1,0,4];
151 veor
@b[1], @b[1], @b[5]
152 veor
@b[2], @b[2], @b[7]
154 veor
@b[3], @b[3], @b[1]
155 veor
@b[4], @b[4], @b[5]
156 veor
@b[7], @b[7], @b[5]
157 veor
@b[3], @b[3], @b[4]
158 veor
@b[5], @b[5], @b[0]
159 veor
@b[3], @b[3], @b[7]
160 veor
@b[6], @b[6], @b[2]
161 veor
@b[2], @b[2], @b[1]
162 veor
@b[6], @b[6], @b[3]
164 veor
@b[3], @b[3], @b[0]
165 veor
@b[5], @b[5], @b[6]
170 #;*************************************************************
171 #;* Mul_GF4: Input x0-x1,y0-y1 Output x0-x1 Temp t0 (8) *
172 #;*************************************************************
173 my ($x0,$x1,$y0,$y1,$t0,$t1)=@_;
185 sub Mul_GF4_N
{ # not used, see next subroutine
186 # multiply and scale by N
187 my ($x0,$x1,$y0,$y1,$t0)=@_;
200 # interleaved Mul_GF4_N and Mul_GF4
201 my ($x0,$x1,$y0,$y1,$t0,
202 $x2,$x3,$y2,$y3,$t1)=@_;
225 veor
@t[0], @x[0], @x[2]
226 veor
@t[1], @x[1], @x[3]
228 &Mul_GF4
(@x[0], @x[1], @y[0], @y[1], @t[2..3]);
230 veor
@y[0], @y[0], @y[2]
231 veor
@y[1], @y[1], @y[3]
233 Mul_GF4_N_GF4
(@t[0], @t[1], @y[0], @y[1], @t[3],
234 @x[2], @x[3], @y[2], @y[3], @t[2]);
236 veor
@x[0], @x[0], @t[0]
237 veor
@x[2], @x[2], @t[0]
238 veor
@x[1], @x[1], @t[1]
239 veor
@x[3], @x[3], @t[1]
241 veor
@t[0], @x[4], @x[6]
242 veor
@t[1], @x[5], @x[7]
244 &Mul_GF4_N_GF4
(@t[0], @t[1], @y[0], @y[1], @t[3],
245 @x[6], @x[7], @y[2], @y[3], @t[2]);
247 veor
@y[0], @y[0], @y[2]
248 veor
@y[1], @y[1], @y[3]
250 &Mul_GF4
(@x[4], @x[5], @y[0], @y[1], @t[2..3]);
252 veor
@x[4], @x[4], @t[0]
253 veor
@x[6], @x[6], @t[0]
254 veor
@x[5], @x[5], @t[1]
255 veor
@x[7], @x[7], @t[1]
259 #;********************************************************************
260 #;* Inv_GF256: Input x0-x7 Output x0-x7 Temp t0-t3,s0-s3 (144) *
261 #;********************************************************************
265 # direct optimizations from hardware
267 veor
@t[3], @x[4], @x[6]
268 veor
@t[2], @x[5], @x[7]
269 veor
@t[1], @x[1], @x[3]
270 veor
@s[1], @x[7], @x[6]
272 veor
@s[0], @x[0], @x[2]
274 vorr
@t[2], @t[2], @t[1]
275 veor
@s[3], @t[3], @t[0]
276 vand
@s[2], @t[3], @s[0]
277 vorr
@t[3], @t[3], @s[0]
278 veor
@s[0], @s[0], @t[1]
279 vand
@t[0], @t[0], @t[1]
280 veor
@t[1], @x[3], @x[2]
281 vand
@s[3], @s[3], @s[0]
282 vand
@s[1], @s[1], @t[1]
283 veor
@t[1], @x[4], @x[5]
284 veor
@s[0], @x[1], @x[0]
285 veor
@t[3], @t[3], @s[1]
286 veor
@t[2], @t[2], @s[1]
287 vand
@s[1], @t[1], @s[0]
288 vorr
@t[1], @t[1], @s[0]
289 veor
@t[3], @t[3], @s[3]
290 veor
@t[0], @t[0], @s[1]
291 veor
@t[2], @t[2], @s[2]
292 veor
@t[1], @t[1], @s[3]
293 veor
@t[0], @t[0], @s[2]
294 vand
@s[0], @x[7], @x[3]
295 veor
@t[1], @t[1], @s[2]
296 vand
@s[1], @x[6], @x[2]
297 vand
@s[2], @x[5], @x[1]
298 vorr
@s[3], @x[4], @x[0]
299 veor
@t[3], @t[3], @s[0]
300 veor
@t[1], @t[1], @s[2]
301 veor
@t[0], @t[0], @s[3]
302 veor
@t[2], @t[2], @s[1]
304 @ Inv_GF16
\t0, \t1, \t2, \t3, \s0
, \s1
, \s2
, \s3
306 @ new smaller inversion
308 vand
@s[2], @t[3], @t[1]
311 veor
@s[1], @t[2], @s[2]
312 veor
@s[3], @t[0], @s[2]
313 veor
@s[2], @t[0], @s[2] @
@s[2]=@s[3]
315 vbsl
@s[1], @t[1], @t[0]
316 vbsl
@s[3], @t[3], @t[2]
317 veor
@t[3], @t[3], @t[2]
319 vbsl
@s[0], @s[1], @s[2]
320 vbsl
@t[0], @s[2], @s[1]
322 vand
@s[2], @s[0], @s[3]
323 veor
@t[1], @t[1], @t[0]
325 veor
@s[2], @s[2], @t[3]
327 # output in s3, s2, s1, t1
329 # Mul_GF16_2 \x0, \x1, \x2, \x3, \x4, \x5, \x6, \x7, \t2, \t3, \t0, \t1, \s0, \s1, \s2, \s3
331 # Mul_GF16_2 \x0, \x1, \x2, \x3, \x4, \x5, \x6, \x7, \s3, \s2, \s1, \t1, \s0, \t0, \t2, \t3
332 &Mul_GF16_2
(@x,@s[3,2,1],@t[1],@s[0],@t[0,2,3]);
334 ### output msb > [x3,x2,x1,x0,x7,x6,x5,x4] < lsb
337 # AES linear components
344 vldmia
$key!, {@t[0]-@t[3]}
345 veor
@t[0], @t[0], @x[0]
346 veor
@t[1], @t[1], @x[1]
347 vtbl
.8 `&Dlo(@x[0])`, {@t[0]}, `&Dlo($mask)`
348 vtbl
.8 `&Dhi(@x[0])`, {@t[0]}, `&Dhi($mask)`
349 vldmia
$key!, {@t[0]}
350 veor
@t[2], @t[2], @x[2]
351 vtbl
.8 `&Dlo(@x[1])`, {@t[1]}, `&Dlo($mask)`
352 vtbl
.8 `&Dhi(@x[1])`, {@t[1]}, `&Dhi($mask)`
353 vldmia
$key!, {@t[1]}
354 veor
@t[3], @t[3], @x[3]
355 vtbl
.8 `&Dlo(@x[2])`, {@t[2]}, `&Dlo($mask)`
356 vtbl
.8 `&Dhi(@x[2])`, {@t[2]}, `&Dhi($mask)`
357 vldmia
$key!, {@t[2]}
358 vtbl
.8 `&Dlo(@x[3])`, {@t[3]}, `&Dlo($mask)`
359 vtbl
.8 `&Dhi(@x[3])`, {@t[3]}, `&Dhi($mask)`
360 vldmia
$key!, {@t[3]}
361 veor
@t[0], @t[0], @x[4]
362 veor
@t[1], @t[1], @x[5]
363 vtbl
.8 `&Dlo(@x[4])`, {@t[0]}, `&Dlo($mask)`
364 vtbl
.8 `&Dhi(@x[4])`, {@t[0]}, `&Dhi($mask)`
365 veor
@t[2], @t[2], @x[6]
366 vtbl
.8 `&Dlo(@x[5])`, {@t[1]}, `&Dlo($mask)`
367 vtbl
.8 `&Dhi(@x[5])`, {@t[1]}, `&Dhi($mask)`
368 veor
@t[3], @t[3], @x[7]
369 vtbl
.8 `&Dlo(@x[6])`, {@t[2]}, `&Dlo($mask)`
370 vtbl
.8 `&Dhi(@x[6])`, {@t[2]}, `&Dhi($mask)`
371 vtbl
.8 `&Dlo(@x[7])`, {@t[3]}, `&Dlo($mask)`
372 vtbl
.8 `&Dhi(@x[7])`, {@t[3]}, `&Dhi($mask)`
377 # modified to emit output in order suitable for feeding back to aesenc[last]
380 my $inv=@_[16]; # optional
382 vext
.8 @t[0], @x[0], @x[0], #12 @ x0 <<< 32
383 vext
.8 @t[1], @x[1], @x[1], #12
384 veor
@x[0], @x[0], @t[0] @ x0
^ (x0
<<< 32)
385 vext
.8 @t[2], @x[2], @x[2], #12
386 veor
@x[1], @x[1], @t[1]
387 vext
.8 @t[3], @x[3], @x[3], #12
388 veor
@x[2], @x[2], @t[2]
389 vext
.8 @t[4], @x[4], @x[4], #12
390 veor
@x[3], @x[3], @t[3]
391 vext
.8 @t[5], @x[5], @x[5], #12
392 veor
@x[4], @x[4], @t[4]
393 vext
.8 @t[6], @x[6], @x[6], #12
394 veor
@x[5], @x[5], @t[5]
395 vext
.8 @t[7], @x[7], @x[7], #12
396 veor
@x[6], @x[6], @t[6]
398 veor
@t[1], @t[1], @x[0]
399 veor
@x[7], @x[7], @t[7]
400 vext
.8 @x[0], @x[0], @x[0], #8 @ (x0 ^ (x0 <<< 32)) <<< 64)
401 veor
@t[2], @t[2], @x[1]
402 veor
@t[0], @t[0], @x[7]
403 veor
@t[1], @t[1], @x[7]
404 vext
.8 @x[1], @x[1], @x[1], #8
405 veor
@t[5], @t[5], @x[4]
406 veor
@x[0], @x[0], @t[0]
407 veor
@t[6], @t[6], @x[5]
408 veor
@x[1], @x[1], @t[1]
409 vext
.8 @t[0], @x[4], @x[4], #8
410 veor
@t[4], @t[4], @x[3]
411 vext
.8 @t[1], @x[5], @x[5], #8
412 veor
@t[7], @t[7], @x[6]
413 vext
.8 @x[4], @x[3], @x[3], #8
414 veor
@t[3], @t[3], @x[2]
415 vext
.8 @x[5], @x[7], @x[7], #8
416 veor
@t[4], @t[4], @x[7]
417 vext
.8 @x[3], @x[6], @x[6], #8
418 veor
@t[3], @t[3], @x[7]
419 vext
.8 @x[6], @x[2], @x[2], #8
420 veor
@x[7], @t[1], @t[5]
422 $code.=<<___
if (!$inv);
423 veor
@x[2], @t[0], @t[4]
424 veor
@x[4], @x[4], @t[3]
425 veor
@x[5], @x[5], @t[7]
426 veor
@x[3], @x[3], @t[6]
428 veor
@x[6], @x[6], @t[2]
431 $code.=<<___
if ($inv);
432 veor
@t[3], @t[3], @x[4]
433 veor
@x[5], @x[5], @t[7]
434 veor
@x[2], @x[3], @t[6]
435 veor
@x[3], @t[0], @t[4]
436 veor
@x[4], @x[6], @t[2]
442 sub InvMixColumns_orig
{
447 @ multiplication by
0x0e
448 vext
.8 @t[7], @x[7], @x[7], #12
450 veor
@x[2], @x[2], @x[5] @
2 5
451 veor
@x[7], @x[7], @x[5] @
7 5
452 vext
.8 @t[0], @x[0], @x[0], #12
454 veor
@x[5], @x[5], @x[0] @
5 0 [1]
455 veor
@x[0], @x[0], @x[1] @
0 1
456 vext
.8 @t[1], @x[1], @x[1], #12
457 veor
@x[1], @x[1], @x[2] @
1 25
458 veor
@x[0], @x[0], @x[6] @
01 6 [2]
459 vext
.8 @t[3], @x[3], @x[3], #12
460 veor
@x[1], @x[1], @x[3] @
125 3 [4]
461 veor
@x[2], @x[2], @x[0] @
25 016 [3]
462 veor
@x[3], @x[3], @x[7] @
3 75
463 veor
@x[7], @x[7], @x[6] @
75 6 [0]
464 vext
.8 @t[6], @x[6], @x[6], #12
466 veor
@x[6], @x[6], @x[4] @
6 4
467 veor
@x[4], @x[4], @x[3] @
4 375 [6]
468 veor
@x[3], @x[3], @x[7] @
375 756=36
469 veor
@x[6], @x[6], @t[5] @
64 5 [7]
470 veor
@x[3], @x[3], @t[2] @
36 2
471 vext
.8 @t[5], @t[5], @t[5], #12
472 veor
@x[3], @x[3], @t[4] @
362 4 [5]
474 my @y = @x[7,5,0,2,1,3,4,6];
476 @ multiplication by
0x0b
477 veor
@y[1], @y[1], @y[0]
478 veor
@y[0], @y[0], @t[0]
479 vext
.8 @t[2], @t[2], @t[2], #12
480 veor
@y[1], @y[1], @t[1]
481 veor
@y[0], @y[0], @t[5]
482 vext
.8 @t[4], @t[4], @t[4], #12
483 veor
@y[1], @y[1], @t[6]
484 veor
@y[0], @y[0], @t[7]
485 veor
@t[7], @t[7], @t[6] @ clobber t
[7]
487 veor
@y[3], @y[3], @t[0]
488 veor
@y[1], @y[1], @y[0]
489 vext
.8 @t[0], @t[0], @t[0], #12
490 veor
@y[2], @y[2], @t[1]
491 veor
@y[4], @y[4], @t[1]
492 vext
.8 @t[1], @t[1], @t[1], #12
493 veor
@y[2], @y[2], @t[2]
494 veor
@y[3], @y[3], @t[2]
495 veor
@y[5], @y[5], @t[2]
496 veor
@y[2], @y[2], @t[7]
497 vext
.8 @t[2], @t[2], @t[2], #12
498 veor
@y[3], @y[3], @t[3]
499 veor
@y[6], @y[6], @t[3]
500 veor
@y[4], @y[4], @t[3]
501 veor
@y[7], @y[7], @t[4]
502 vext
.8 @t[3], @t[3], @t[3], #12
503 veor
@y[5], @y[5], @t[4]
504 veor
@y[7], @y[7], @t[7]
505 veor
@t[7], @t[7], @t[5] @ clobber t
[7] even more
506 veor
@y[3], @y[3], @t[5]
507 veor
@y[4], @y[4], @t[4]
509 veor
@y[5], @y[5], @t[7]
510 vext
.8 @t[4], @t[4], @t[4], #12
511 veor
@y[6], @y[6], @t[7]
512 veor
@y[4], @y[4], @t[7]
514 veor
@t[7], @t[7], @t[5]
515 vext
.8 @t[5], @t[5], @t[5], #12
517 @ multiplication by
0x0d
518 veor
@y[4], @y[4], @y[7]
519 veor
@t[7], @t[7], @t[6] @ restore t
[7]
520 veor
@y[7], @y[7], @t[4]
521 vext
.8 @t[6], @t[6], @t[6], #12
522 veor
@y[2], @y[2], @t[0]
523 veor
@y[7], @y[7], @t[5]
524 vext
.8 @t[7], @t[7], @t[7], #12
525 veor
@y[2], @y[2], @t[2]
527 veor
@y[3], @y[3], @y[1]
528 veor
@y[1], @y[1], @t[1]
529 veor
@y[0], @y[0], @t[0]
530 veor
@y[3], @y[3], @t[0]
531 veor
@y[1], @y[1], @t[5]
532 veor
@y[0], @y[0], @t[5]
533 vext
.8 @t[0], @t[0], @t[0], #12
534 veor
@y[1], @y[1], @t[7]
535 veor
@y[0], @y[0], @t[6]
536 veor
@y[3], @y[3], @y[1]
537 veor
@y[4], @y[4], @t[1]
538 vext
.8 @t[1], @t[1], @t[1], #12
540 veor
@y[7], @y[7], @t[7]
541 veor
@y[4], @y[4], @t[2]
542 veor
@y[5], @y[5], @t[2]
543 veor
@y[2], @y[2], @t[6]
544 veor
@t[6], @t[6], @t[3] @ clobber t
[6]
545 vext
.8 @t[2], @t[2], @t[2], #12
546 veor
@y[4], @y[4], @y[7]
547 veor
@y[3], @y[3], @t[6]
549 veor
@y[6], @y[6], @t[6]
550 veor
@y[5], @y[5], @t[5]
551 vext
.8 @t[5], @t[5], @t[5], #12
552 veor
@y[6], @y[6], @t[4]
553 vext
.8 @t[4], @t[4], @t[4], #12
554 veor
@y[5], @y[5], @t[6]
555 veor
@y[6], @y[6], @t[7]
556 vext
.8 @t[7], @t[7], @t[7], #12
557 veor
@t[6], @t[6], @t[3] @ restore t
[6]
558 vext
.8 @t[3], @t[3], @t[3], #12
560 @ multiplication by
0x09
561 veor
@y[4], @y[4], @y[1]
562 veor
@t[1], @t[1], @y[1] @ t
[1]=y
[1]
563 veor
@t[0], @t[0], @t[5] @ clobber t
[0]
564 vext
.8 @t[6], @t[6], @t[6], #12
565 veor
@t[1], @t[1], @t[5]
566 veor
@y[3], @y[3], @t[0]
567 veor
@t[0], @t[0], @y[0] @ t
[0]=y
[0]
568 veor
@t[1], @t[1], @t[6]
569 veor
@t[6], @t[6], @t[7] @ clobber t
[6]
570 veor
@y[4], @y[4], @t[1]
571 veor
@y[7], @y[7], @t[4]
572 veor
@y[6], @y[6], @t[3]
573 veor
@y[5], @y[5], @t[2]
574 veor
@t[4], @t[4], @y[4] @ t
[4]=y
[4]
575 veor
@t[3], @t[3], @y[3] @ t
[3]=y
[3]
576 veor
@t[5], @t[5], @y[5] @ t
[5]=y
[5]
577 veor
@t[2], @t[2], @y[2] @ t
[2]=y
[2]
578 veor
@t[3], @t[3], @t[7]
579 veor
@XMM[5], @t[5], @t[6]
580 veor
@XMM[6], @t[6], @y[6] @ t
[6]=y
[6]
581 veor
@XMM[2], @t[2], @t[6]
582 veor
@XMM[7], @t[7], @y[7] @ t
[7]=y
[7]
586 @ vmov
@XMM[2], @t[2]
589 @ vmov
@XMM[5], @t[5]
590 @ vmov
@XMM[6], @t[6]
591 @ vmov
@XMM[7], @t[7]
599 # Thanks to Jussi Kivilinna for providing pointer to
601 # | 0e 0b 0d 09 | | 02 03 01 01 | | 05 00 04 00 |
602 # | 09 0e 0b 0d | = | 01 02 03 01 | x | 00 05 00 04 |
603 # | 0d 09 0e 0b | | 01 01 02 03 | | 04 00 05 00 |
604 # | 0b 0d 09 0e | | 03 01 01 02 | | 00 04 00 05 |
607 @ multiplication by
0x05-0x00-0x04-0x00
608 vext
.8 @t[0], @x[0], @x[0], #8
609 vext
.8 @t[6], @x[6], @x[6], #8
610 vext
.8 @t[7], @x[7], @x[7], #8
611 veor
@t[0], @t[0], @x[0]
612 vext
.8 @t[1], @x[1], @x[1], #8
613 veor
@t[6], @t[6], @x[6]
614 vext
.8 @t[2], @x[2], @x[2], #8
615 veor
@t[7], @t[7], @x[7]
616 vext
.8 @t[3], @x[3], @x[3], #8
617 veor
@t[1], @t[1], @x[1]
618 vext
.8 @t[4], @x[4], @x[4], #8
619 veor
@t[2], @t[2], @x[2]
620 vext
.8 @t[5], @x[5], @x[5], #8
621 veor
@t[3], @t[3], @x[3]
622 veor
@t[4], @t[4], @x[4]
623 veor
@t[5], @t[5], @x[5]
625 veor
@x[0], @x[0], @t[6]
626 veor
@x[1], @x[1], @t[6]
627 veor
@x[2], @x[2], @t[0]
628 veor
@x[4], @x[4], @t[2]
629 veor
@x[3], @x[3], @t[1]
630 veor
@x[1], @x[1], @t[7]
631 veor
@x[2], @x[2], @t[7]
632 veor
@x[4], @x[4], @t[6]
633 veor
@x[5], @x[5], @t[3]
634 veor
@x[3], @x[3], @t[6]
635 veor
@x[6], @x[6], @t[4]
636 veor
@x[4], @x[4], @t[7]
637 veor
@x[5], @x[5], @t[7]
638 veor
@x[7], @x[7], @t[5]
640 &MixColumns
(@x,@t,1); # flipped 2<->3 and 4<->6
644 my ($a,$b,$n,$mask,$t)=@_;
655 my ($a0,$b0,$a1,$b1,$n,$mask,$t0,$t1)=@_;
657 vshr
.u64
$t0, $b0, #$n
658 vshr
.u64
$t1, $b1, #$n
664 vshl
.u64
$t0, $t0, #$n
666 vshl
.u64
$t1, $t1, #$n
673 my @x=reverse(@_[0..7]);
674 my ($t0,$t1,$t2,$t3)=@_[8..11];
676 vmov
.i8
$t0,#0x55 @ compose .LBS0
677 vmov
.i8
$t1,#0x33 @ compose .LBS1
679 &swapmove2x
(@x[0,1,2,3],1,$t0,$t2,$t3);
680 &swapmove2x
(@x[4,5,6,7],1,$t0,$t2,$t3);
682 vmov
.i8
$t0,#0x0f @ compose .LBS2
684 &swapmove2x
(@x[0,2,1,3],2,$t1,$t2,$t3);
685 &swapmove2x
(@x[4,6,5,7],2,$t1,$t2,$t3);
687 &swapmove2x
(@x[0,4,1,5],4,$t0,$t2,$t3);
688 &swapmove2x
(@x[2,6,3,7],4,$t0,$t2,$t3);
693 # include "arm_arch.h"
695 # define VFP_ABI_PUSH vstmdb sp!,{d8-d15}
696 # define VFP_ABI_POP vldmia sp!,{d8-d15}
697 # define VFP_ABI_FRAME 0x40
699 # define VFP_ABI_PUSH
701 # define VFP_ABI_FRAME 0
702 # define BSAES_ASM_EXTENDED_KEY
703 # define XTS_CHAIN_TWEAK
704 # define __ARM_ARCH__ 7
713 .syntax unified @ ARMv7
-capable assembler is expected to handle this
722 .type _bsaes_decrypt8
,%function
725 adr
$const,_bsaes_decrypt8
726 vldmia
$key!, {@XMM[9]} @ round
0 key
727 add
$const,$const,#.LM0ISR-_bsaes_decrypt8
729 vldmia
$const!, {@XMM[8]} @
.LM0ISR
730 veor
@XMM[10], @XMM[0], @XMM[9] @
xor with round0 key
731 veor
@XMM[11], @XMM[1], @XMM[9]
732 vtbl
.8 `&Dlo(@XMM[0])`, {@XMM[10]}, `&Dlo(@XMM[8])`
733 vtbl
.8 `&Dhi(@XMM[0])`, {@XMM[10]}, `&Dhi(@XMM[8])`
734 veor
@XMM[12], @XMM[2], @XMM[9]
735 vtbl
.8 `&Dlo(@XMM[1])`, {@XMM[11]}, `&Dlo(@XMM[8])`
736 vtbl
.8 `&Dhi(@XMM[1])`, {@XMM[11]}, `&Dhi(@XMM[8])`
737 veor
@XMM[13], @XMM[3], @XMM[9]
738 vtbl
.8 `&Dlo(@XMM[2])`, {@XMM[12]}, `&Dlo(@XMM[8])`
739 vtbl
.8 `&Dhi(@XMM[2])`, {@XMM[12]}, `&Dhi(@XMM[8])`
740 veor
@XMM[14], @XMM[4], @XMM[9]
741 vtbl
.8 `&Dlo(@XMM[3])`, {@XMM[13]}, `&Dlo(@XMM[8])`
742 vtbl
.8 `&Dhi(@XMM[3])`, {@XMM[13]}, `&Dhi(@XMM[8])`
743 veor
@XMM[15], @XMM[5], @XMM[9]
744 vtbl
.8 `&Dlo(@XMM[4])`, {@XMM[14]}, `&Dlo(@XMM[8])`
745 vtbl
.8 `&Dhi(@XMM[4])`, {@XMM[14]}, `&Dhi(@XMM[8])`
746 veor
@XMM[10], @XMM[6], @XMM[9]
747 vtbl
.8 `&Dlo(@XMM[5])`, {@XMM[15]}, `&Dlo(@XMM[8])`
748 vtbl
.8 `&Dhi(@XMM[5])`, {@XMM[15]}, `&Dhi(@XMM[8])`
749 veor
@XMM[11], @XMM[7], @XMM[9]
750 vtbl
.8 `&Dlo(@XMM[6])`, {@XMM[10]}, `&Dlo(@XMM[8])`
751 vtbl
.8 `&Dhi(@XMM[6])`, {@XMM[10]}, `&Dhi(@XMM[8])`
752 vtbl
.8 `&Dlo(@XMM[7])`, {@XMM[11]}, `&Dlo(@XMM[8])`
753 vtbl
.8 `&Dhi(@XMM[7])`, {@XMM[11]}, `&Dhi(@XMM[8])`
755 &bitslice
(@XMM[0..7, 8..11]);
757 sub $rounds,$rounds,#1
762 &ShiftRows
(@XMM[0..7, 8..12]);
763 $code.=".Ldec_sbox:\n";
764 &InvSbox
(@XMM[0..7, 8..15]);
766 subs
$rounds,$rounds,#1
769 &InvMixColumns
(@XMM[0,1,6,4,2,7,3,5, 8..15]);
771 vldmia
$const, {@XMM[12]} @
.LISR
772 ite
eq @ Thumb2 thing
, sanity check
in ARM
773 addeq
$const,$const,#0x10
775 vldmia
$const, {@XMM[12]} @
.LISRM0
780 &bitslice
(@XMM[0,1,6,4,2,7,3,5, 8..11]);
782 vldmia
$key, {@XMM[8]} @
last round key
783 veor
@XMM[6], @XMM[6], @XMM[8]
784 veor
@XMM[4], @XMM[4], @XMM[8]
785 veor
@XMM[2], @XMM[2], @XMM[8]
786 veor
@XMM[7], @XMM[7], @XMM[8]
787 veor
@XMM[3], @XMM[3], @XMM[8]
788 veor
@XMM[5], @XMM[5], @XMM[8]
789 veor
@XMM[0], @XMM[0], @XMM[8]
790 veor
@XMM[1], @XMM[1], @XMM[8]
792 .size _bsaes_decrypt8
,.-_bsaes_decrypt8
794 .type _bsaes_const
,%object
797 .LM0ISR
: @ InvShiftRows constants
798 .quad
0x0a0e0206070b0f03, 0x0004080c0d010509
800 .quad
0x0504070602010003, 0x0f0e0d0c080b0a09
802 .quad
0x01040b0e0205080f, 0x0306090c00070a0d
803 .LM0SR
: @ ShiftRows constants
804 .quad
0x0a0e02060f03070b, 0x0004080c05090d01
806 .quad
0x0504070600030201, 0x0f0e0d0c0a09080b
808 .quad
0x0304090e00050a0f, 0x01060b0c0207080d
810 .quad
0x02060a0e03070b0f, 0x0004080c0105090d
812 .quad
0x090d01050c000408, 0x03070b0f060a0e02
813 .asciz
"Bit-sliced AES for NEON, CRYPTOGAMS by <appro\@openssl.org>"
815 .size _bsaes_const
,.-_bsaes_const
817 .type _bsaes_encrypt8
,%function
820 adr
$const,_bsaes_encrypt8
821 vldmia
$key!, {@XMM[9]} @ round
0 key
822 sub $const,$const,#_bsaes_encrypt8-.LM0SR
824 vldmia
$const!, {@XMM[8]} @
.LM0SR
826 veor
@XMM[10], @XMM[0], @XMM[9] @
xor with round0 key
827 veor
@XMM[11], @XMM[1], @XMM[9]
828 vtbl
.8 `&Dlo(@XMM[0])`, {@XMM[10]}, `&Dlo(@XMM[8])`
829 vtbl
.8 `&Dhi(@XMM[0])`, {@XMM[10]}, `&Dhi(@XMM[8])`
830 veor
@XMM[12], @XMM[2], @XMM[9]
831 vtbl
.8 `&Dlo(@XMM[1])`, {@XMM[11]}, `&Dlo(@XMM[8])`
832 vtbl
.8 `&Dhi(@XMM[1])`, {@XMM[11]}, `&Dhi(@XMM[8])`
833 veor
@XMM[13], @XMM[3], @XMM[9]
834 vtbl
.8 `&Dlo(@XMM[2])`, {@XMM[12]}, `&Dlo(@XMM[8])`
835 vtbl
.8 `&Dhi(@XMM[2])`, {@XMM[12]}, `&Dhi(@XMM[8])`
836 veor
@XMM[14], @XMM[4], @XMM[9]
837 vtbl
.8 `&Dlo(@XMM[3])`, {@XMM[13]}, `&Dlo(@XMM[8])`
838 vtbl
.8 `&Dhi(@XMM[3])`, {@XMM[13]}, `&Dhi(@XMM[8])`
839 veor
@XMM[15], @XMM[5], @XMM[9]
840 vtbl
.8 `&Dlo(@XMM[4])`, {@XMM[14]}, `&Dlo(@XMM[8])`
841 vtbl
.8 `&Dhi(@XMM[4])`, {@XMM[14]}, `&Dhi(@XMM[8])`
842 veor
@XMM[10], @XMM[6], @XMM[9]
843 vtbl
.8 `&Dlo(@XMM[5])`, {@XMM[15]}, `&Dlo(@XMM[8])`
844 vtbl
.8 `&Dhi(@XMM[5])`, {@XMM[15]}, `&Dhi(@XMM[8])`
845 veor
@XMM[11], @XMM[7], @XMM[9]
846 vtbl
.8 `&Dlo(@XMM[6])`, {@XMM[10]}, `&Dlo(@XMM[8])`
847 vtbl
.8 `&Dhi(@XMM[6])`, {@XMM[10]}, `&Dhi(@XMM[8])`
848 vtbl
.8 `&Dlo(@XMM[7])`, {@XMM[11]}, `&Dlo(@XMM[8])`
849 vtbl
.8 `&Dhi(@XMM[7])`, {@XMM[11]}, `&Dhi(@XMM[8])`
850 _bsaes_encrypt8_bitslice
:
852 &bitslice
(@XMM[0..7, 8..11]);
854 sub $rounds,$rounds,#1
859 &ShiftRows
(@XMM[0..7, 8..12]);
860 $code.=".Lenc_sbox:\n";
861 &Sbox
(@XMM[0..7, 8..15]);
863 subs
$rounds,$rounds,#1
866 &MixColumns
(@XMM[0,1,4,6,3,7,2,5, 8..15]);
868 vldmia
$const, {@XMM[12]} @
.LSR
869 ite
eq @ Thumb2 thing
, samity check
in ARM
870 addeq
$const,$const,#0x10
872 vldmia
$const, {@XMM[12]} @
.LSRM0
877 # output in lsb > [t0, t1, t4, t6, t3, t7, t2, t5] < msb
878 &bitslice
(@XMM[0,1,4,6,3,7,2,5, 8..11]);
880 vldmia
$key, {@XMM[8]} @
last round key
881 veor
@XMM[4], @XMM[4], @XMM[8]
882 veor
@XMM[6], @XMM[6], @XMM[8]
883 veor
@XMM[3], @XMM[3], @XMM[8]
884 veor
@XMM[7], @XMM[7], @XMM[8]
885 veor
@XMM[2], @XMM[2], @XMM[8]
886 veor
@XMM[5], @XMM[5], @XMM[8]
887 veor
@XMM[0], @XMM[0], @XMM[8]
888 veor
@XMM[1], @XMM[1], @XMM[8]
890 .size _bsaes_encrypt8
,.-_bsaes_encrypt8
894 my ($out,$inp,$rounds,$const)=("r12","r4","r5","r6");
897 my @x=reverse(@_[0..7]);
898 my ($bs0,$bs1,$bs2,$t2,$t3)=@_[8..12];
900 &swapmove
(@x[0,1],1,$bs0,$t2,$t3);
902 @
&swapmove
(@x[2,3],1,$t0,$t2,$t3);
906 #&swapmove2x(@x[4,5,6,7],1,$t0,$t2,$t3);
908 &swapmove2x
(@x[0,2,1,3],2,$bs1,$t2,$t3);
910 @
&swapmove2x
(@x[4,6,5,7],2,$t1,$t2,$t3);
916 &swapmove2x
(@x[0,4,1,5],4,$bs2,$t2,$t3);
917 &swapmove2x
(@x[2,6,3,7],4,$bs2,$t2,$t3);
921 .type _bsaes_key_convert
,%function
924 adr
$const,_bsaes_key_convert
925 vld1
.8
{@XMM[7]}, [$inp]! @ load round
0 key
926 sub $const,$const,#_bsaes_key_convert-.LM0
927 vld1
.8
{@XMM[15]}, [$inp]! @ load round
1 key
929 vmov
.i8
@XMM[8], #0x01 @ bit masks
930 vmov
.i8
@XMM[9], #0x02
931 vmov
.i8
@XMM[10], #0x04
932 vmov
.i8
@XMM[11], #0x08
933 vmov
.i8
@XMM[12], #0x10
934 vmov
.i8
@XMM[13], #0x20
935 vldmia
$const, {@XMM[14]} @
.LM0
938 vrev32
.8
@XMM[7], @XMM[7]
939 vrev32
.8
@XMM[15], @XMM[15]
941 sub $rounds,$rounds,#1
942 vstmia
$out!, {@XMM[7]} @ save round
0 key
947 vtbl
.8 `&Dlo(@XMM[7])`,{@XMM[15]},`&Dlo(@XMM[14])`
948 vtbl
.8 `&Dhi(@XMM[7])`,{@XMM[15]},`&Dhi(@XMM[14])`
949 vmov
.i8
@XMM[6], #0x40
950 vmov
.i8
@XMM[15], #0x80
952 vtst
.8 @XMM[0], @XMM[7], @XMM[8]
953 vtst
.8 @XMM[1], @XMM[7], @XMM[9]
954 vtst
.8 @XMM[2], @XMM[7], @XMM[10]
955 vtst
.8 @XMM[3], @XMM[7], @XMM[11]
956 vtst
.8 @XMM[4], @XMM[7], @XMM[12]
957 vtst
.8 @XMM[5], @XMM[7], @XMM[13]
958 vtst
.8 @XMM[6], @XMM[7], @XMM[6]
959 vtst
.8 @XMM[7], @XMM[7], @XMM[15]
960 vld1
.8
{@XMM[15]}, [$inp]! @ load
next round key
961 vmvn
@XMM[0], @XMM[0] @
"pnot"
962 vmvn
@XMM[1], @XMM[1]
963 vmvn
@XMM[5], @XMM[5]
964 vmvn
@XMM[6], @XMM[6]
966 vrev32
.8
@XMM[15], @XMM[15]
968 subs
$rounds,$rounds,#1
969 vstmia
$out!,{@XMM[0]-@XMM[7]} @
write bit
-sliced round key
972 vmov
.i8
@XMM[7],#0x63 @ compose .L63
973 @ don
't save last round key
975 .size _bsaes_key_convert,.-_bsaes_key_convert
979 if (0) { # following four functions are unsupported interface
980 # used for benchmarking...
982 .globl bsaes_enc_key_convert
983 .type bsaes_enc_key_convert,%function
985 bsaes_enc_key_convert:
987 vstmdb sp!,{d8-d15} @ ABI specification says so
989 ldr r5,[$inp,#240] @ pass rounds
990 mov r4,$inp @ pass key
991 mov r12,$out @ pass key schedule
992 bl _bsaes_key_convert
993 veor @XMM[7],@XMM[7],@XMM[15] @ fix up last round key
994 vstmia r12, {@XMM[7]} @ save last round key
998 .size bsaes_enc_key_convert,.-bsaes_enc_key_convert
1000 .globl bsaes_encrypt_128
1001 .type bsaes_encrypt_128,%function
1004 stmdb sp!,{r4-r6,lr}
1005 vstmdb sp!,{d8-d15} @ ABI specification says so
1007 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input
1008 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]!
1009 mov r4,$key @ pass the key
1010 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]!
1011 mov r5,#10 @ pass rounds
1012 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]!
1016 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1017 vst1.8 {@XMM[4]}, [$out]!
1018 vst1.8 {@XMM[6]}, [$out]!
1019 vst1.8 {@XMM[3]}, [$out]!
1020 vst1.8 {@XMM[7]}, [$out]!
1021 vst1.8 {@XMM[2]}, [$out]!
1022 subs $len,$len,#0x80
1023 vst1.8 {@XMM[5]}, [$out]!
1027 ldmia sp!,{r4-r6,pc}
1028 .size bsaes_encrypt_128,.-bsaes_encrypt_128
1030 .globl bsaes_dec_key_convert
1031 .type bsaes_dec_key_convert,%function
1033 bsaes_dec_key_convert:
1034 stmdb sp!,{r4-r6,lr}
1035 vstmdb sp!,{d8-d15} @ ABI specification says so
1037 ldr r5,[$inp,#240] @ pass rounds
1038 mov r4,$inp @ pass key
1039 mov r12,$out @ pass key schedule
1040 bl _bsaes_key_convert
1041 vldmia $out, {@XMM[6]}
1042 vstmia r12, {@XMM[15]} @ save last round key
1043 veor @XMM[7], @XMM[7], @XMM[6] @ fix up round 0 key
1044 vstmia $out, {@XMM[7]}
1047 ldmia sp!,{r4-r6,pc}
1048 .size bsaes_dec_key_convert,.-bsaes_dec_key_convert
1050 .globl bsaes_decrypt_128
1051 .type bsaes_decrypt_128,%function
1054 stmdb sp!,{r4-r6,lr}
1055 vstmdb sp!,{d8-d15} @ ABI specification says so
1057 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input
1058 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]!
1059 mov r4,$key @ pass the key
1060 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]!
1061 mov r5,#10 @ pass rounds
1062 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]!
1066 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1067 vst1.8 {@XMM[6]}, [$out]!
1068 vst1.8 {@XMM[4]}, [$out]!
1069 vst1.8 {@XMM[2]}, [$out]!
1070 vst1.8 {@XMM[7]}, [$out]!
1071 vst1.8 {@XMM[3]}, [$out]!
1072 subs $len,$len,#0x80
1073 vst1.8 {@XMM[5]}, [$out]!
1077 ldmia sp!,{r4-r6,pc}
1078 .size bsaes_decrypt_128,.-bsaes_decrypt_128
1082 my ($inp,$out,$len,$key, $ivp,$fp,$rounds)=map("r$_",(0..3,8..10));
1083 my ($keysched)=("sp");
1086 .extern AES_cbc_encrypt
1089 .global bsaes_cbc_encrypt
1090 .type bsaes_cbc_encrypt,%function
1104 @ it is up to the caller to make sure we are called with enc == 0
1107 stmdb sp!, {r4-r10, lr}
1109 ldr $ivp, [ip] @ IV is 1st arg on the stack
1110 mov $len, $len, lsr#4 @ len in 16 byte blocks
1111 sub sp, #0x10 @ scratch space to carry over the IV
1112 mov $fp, sp @ save sp
1114 ldr $rounds, [$key, #240] @ get # of rounds
1115 #ifndef BSAES_ASM_EXTENDED_KEY
1116 @ allocate the key schedule on the stack
1117 sub r12, sp, $rounds, lsl#7 @ 128 bytes per inner round key
1118 add r12, #`128-32` @ sifze of bit-slices key schedule
1120 @ populate the key schedule
1121 mov r4, $key @ pass key
1122 mov r5, $rounds @ pass # of rounds
1123 mov sp, r12 @ sp is $keysched
1124 bl _bsaes_key_convert
1125 vldmia $keysched, {@XMM[6]}
1126 vstmia r12, {@XMM[15]} @ save last round key
1127 veor @XMM[7], @XMM[7], @XMM[6] @ fix up round 0 key
1128 vstmia $keysched, {@XMM[7]}
1130 ldr r12, [$key, #244]
1134 @ populate the key schedule
1135 str r12, [$key, #244]
1136 mov r4, $key @ pass key
1137 mov r5, $rounds @ pass # of rounds
1138 add r12, $key, #248 @ pass key schedule
1139 bl _bsaes_key_convert
1141 vldmia r4, {@XMM[6]}
1142 vstmia r12, {@XMM[15]} @ save last round key
1143 veor @XMM[7], @XMM[7], @XMM[6] @ fix up round 0 key
1144 vstmia r4, {@XMM[7]}
1150 vld1.8 {@XMM[15]}, [$ivp] @ load IV
1155 subs $len, $len, #0x8
1156 bmi .Lcbc_dec_loop_finish
1158 vld1.8 {@XMM[0]-@XMM[1]}, [$inp]! @ load input
1159 vld1.8 {@XMM[2]-@XMM[3]}, [$inp]!
1160 #ifndef BSAES_ASM_EXTENDED_KEY
1161 mov r4, $keysched @ pass the key
1165 vld1.8 {@XMM[4]-@XMM[5]}, [$inp]!
1167 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]
1168 sub $inp, $inp, #0x60
1169 vstmia $fp, {@XMM[15]} @ put aside IV
1173 vldmia $fp, {@XMM[14]} @ reload IV
1174 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input
1175 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1176 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]!
1177 veor @XMM[1], @XMM[1], @XMM[8]
1178 veor @XMM[6], @XMM[6], @XMM[9]
1179 vld1.8 {@XMM[12]-@XMM[13]}, [$inp]!
1180 veor @XMM[4], @XMM[4], @XMM[10]
1181 veor @XMM[2], @XMM[2], @XMM[11]
1182 vld1.8 {@XMM[14]-@XMM[15]}, [$inp]!
1183 veor @XMM[7], @XMM[7], @XMM[12]
1184 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1185 veor @XMM[3], @XMM[3], @XMM[13]
1186 vst1.8 {@XMM[6]}, [$out]!
1187 veor @XMM[5], @XMM[5], @XMM[14]
1188 vst1.8 {@XMM[4]}, [$out]!
1189 vst1.8 {@XMM[2]}, [$out]!
1190 vst1.8 {@XMM[7]}, [$out]!
1191 vst1.8 {@XMM[3]}, [$out]!
1192 vst1.8 {@XMM[5]}, [$out]!
1196 .Lcbc_dec_loop_finish:
1200 vld1.8 {@XMM[0]}, [$inp]! @ load input
1203 vld1.8 {@XMM[1]}, [$inp]!
1204 #ifndef BSAES_ASM_EXTENDED_KEY
1205 mov r4, $keysched @ pass the key
1210 vstmia $fp, {@XMM[15]} @ put aside IV
1212 vld1.8 {@XMM[2]}, [$inp]!
1215 vld1.8 {@XMM[3]}, [$inp]!
1217 vld1.8 {@XMM[4]}, [$inp]!
1220 vld1.8 {@XMM[5]}, [$inp]!
1222 vld1.8 {@XMM[6]}, [$inp]!
1223 sub $inp, $inp, #0x70
1227 vldmia $fp, {@XMM[14]} @ reload IV
1228 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input
1229 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1230 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]!
1231 veor @XMM[1], @XMM[1], @XMM[8]
1232 veor @XMM[6], @XMM[6], @XMM[9]
1233 vld1.8 {@XMM[12]-@XMM[13]}, [$inp]!
1234 veor @XMM[4], @XMM[4], @XMM[10]
1235 veor @XMM[2], @XMM[2], @XMM[11]
1236 vld1.8 {@XMM[15]}, [$inp]!
1237 veor @XMM[7], @XMM[7], @XMM[12]
1238 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1239 veor @XMM[3], @XMM[3], @XMM[13]
1240 vst1.8 {@XMM[6]}, [$out]!
1241 vst1.8 {@XMM[4]}, [$out]!
1242 vst1.8 {@XMM[2]}, [$out]!
1243 vst1.8 {@XMM[7]}, [$out]!
1244 vst1.8 {@XMM[3]}, [$out]!
1248 sub $inp, $inp, #0x60
1250 vldmia $fp,{@XMM[14]} @ reload IV
1251 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input
1252 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1253 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]!
1254 veor @XMM[1], @XMM[1], @XMM[8]
1255 veor @XMM[6], @XMM[6], @XMM[9]
1256 vld1.8 {@XMM[12]}, [$inp]!
1257 veor @XMM[4], @XMM[4], @XMM[10]
1258 veor @XMM[2], @XMM[2], @XMM[11]
1259 vld1.8 {@XMM[15]}, [$inp]!
1260 veor @XMM[7], @XMM[7], @XMM[12]
1261 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1262 vst1.8 {@XMM[6]}, [$out]!
1263 vst1.8 {@XMM[4]}, [$out]!
1264 vst1.8 {@XMM[2]}, [$out]!
1265 vst1.8 {@XMM[7]}, [$out]!
1269 sub $inp, $inp, #0x50
1271 vldmia $fp, {@XMM[14]} @ reload IV
1272 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input
1273 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1274 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]!
1275 veor @XMM[1], @XMM[1], @XMM[8]
1276 veor @XMM[6], @XMM[6], @XMM[9]
1277 vld1.8 {@XMM[15]}, [$inp]!
1278 veor @XMM[4], @XMM[4], @XMM[10]
1279 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1280 veor @XMM[2], @XMM[2], @XMM[11]
1281 vst1.8 {@XMM[6]}, [$out]!
1282 vst1.8 {@XMM[4]}, [$out]!
1283 vst1.8 {@XMM[2]}, [$out]!
1287 sub $inp, $inp, #0x40
1289 vldmia $fp, {@XMM[14]} @ reload IV
1290 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input
1291 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1292 vld1.8 {@XMM[10]}, [$inp]!
1293 veor @XMM[1], @XMM[1], @XMM[8]
1294 veor @XMM[6], @XMM[6], @XMM[9]
1295 vld1.8 {@XMM[15]}, [$inp]!
1296 veor @XMM[4], @XMM[4], @XMM[10]
1297 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1298 vst1.8 {@XMM[6]}, [$out]!
1299 vst1.8 {@XMM[4]}, [$out]!
1303 sub $inp, $inp, #0x30
1305 vldmia $fp, {@XMM[14]} @ reload IV
1306 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ reload input
1307 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1308 vld1.8 {@XMM[15]}, [$inp]!
1309 veor @XMM[1], @XMM[1], @XMM[8]
1310 veor @XMM[6], @XMM[6], @XMM[9]
1311 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1312 vst1.8 {@XMM[6]}, [$out]!
1316 sub $inp, $inp, #0x20
1318 vldmia $fp, {@XMM[14]} @ reload IV
1319 vld1.8 {@XMM[8]}, [$inp]! @ reload input
1320 veor @XMM[0], @XMM[0], @XMM[14] @ ^= IV
1321 vld1.8 {@XMM[15]}, [$inp]! @ reload input
1322 veor @XMM[1], @XMM[1], @XMM[8]
1323 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1327 sub $inp, $inp, #0x10
1328 mov $rounds, $out @ save original out pointer
1329 mov $out, $fp @ use the iv scratch space as out buffer
1331 vmov @XMM[4],@XMM[15] @ just in case ensure that IV
1332 vmov @XMM[5],@XMM[0] @ and input are preserved
1334 vld1.8 {@XMM[0]}, [$fp,:64] @ load result
1335 veor @XMM[0], @XMM[0], @XMM[4] @ ^= IV
1336 vmov @XMM[15], @XMM[5] @ @XMM[5] holds input
1337 vst1.8 {@XMM[0]}, [$rounds] @ write output
1340 #ifndef BSAES_ASM_EXTENDED_KEY
1343 .Lcbc_dec_bzero: @ wipe key schedule [if any]
1344 vstmia $keysched!, {q0-q1}
1350 add sp, #0x10 @ add sp,$fp,#0x10 is no good for thumb
1351 vst1.8 {@XMM[15]}, [$ivp] @ return IV
1353 ldmia sp!, {r4-r10, pc}
1354 .size bsaes_cbc_encrypt,.-bsaes_cbc_encrypt
1358 my ($inp,$out,$len,$key, $ctr,$fp,$rounds)=(map("r$_",(0..3,8..10)));
1359 my $const = "r6"; # shared with _bsaes_encrypt8_alt
1360 my $keysched = "sp";
1364 .global bsaes_ctr32_encrypt_blocks
1365 .type bsaes_ctr32_encrypt_blocks,%function
1367 bsaes_ctr32_encrypt_blocks:
1368 cmp $len, #8 @ use plain AES for
1369 blo .Lctr_enc_short @ small sizes
1372 stmdb sp!, {r4-r10, lr}
1374 ldr $ctr, [ip] @ ctr is 1st arg on the stack
1375 sub sp, sp, #0x10 @ scratch space to carry over the ctr
1376 mov $fp, sp @ save sp
1378 ldr $rounds, [$key, #240] @ get # of rounds
1379 #ifndef BSAES_ASM_EXTENDED_KEY
1380 @ allocate the key schedule on the stack
1381 sub r12, sp, $rounds, lsl#7 @ 128 bytes per inner round key
1382 add r12, #`128-32` @ size of bit-sliced key schedule
1384 @ populate the key schedule
1385 mov r4, $key @ pass key
1386 mov r5, $rounds @ pass # of rounds
1387 mov sp, r12 @ sp is $keysched
1388 bl _bsaes_key_convert
1389 veor @XMM[7],@XMM[7],@XMM[15] @ fix up last round key
1390 vstmia r12, {@XMM[7]} @ save last round key
1392 vld1.8 {@XMM[0]}, [$ctr] @ load counter
1393 add $ctr, $const, #.LREVM0SR-.LM0 @ borrow $ctr
1394 vldmia $keysched, {@XMM[4]} @ load round0 key
1396 ldr r12, [$key, #244]
1400 @ populate the key schedule
1401 str r12, [$key, #244]
1402 mov r4, $key @ pass key
1403 mov r5, $rounds @ pass # of rounds
1404 add r12, $key, #248 @ pass key schedule
1405 bl _bsaes_key_convert
1406 veor @XMM[7],@XMM[7],@XMM[15] @ fix up last round key
1407 vstmia r12, {@XMM[7]} @ save last round key
1410 0: add r12, $key, #248
1411 vld1.8 {@XMM[0]}, [$ctr] @ load counter
1412 adrl $ctr, .LREVM0SR @ borrow $ctr
1413 vldmia r12, {@XMM[4]} @ load round0 key
1414 sub sp, #0x10 @ place for adjusted round0 key
1417 vmov.i32 @XMM[8],#1 @ compose 1<<96
1418 veor @XMM[9],@XMM[9],@XMM[9]
1419 vrev32.8 @XMM[0],@XMM[0]
1420 vext.8 @XMM[8],@XMM[9],@XMM[8],#4
1421 vrev32.8 @XMM[4],@XMM[4]
1422 vadd.u32 @XMM[9],@XMM[8],@XMM[8] @ compose 2<<96
1423 vstmia $keysched, {@XMM[4]} @ save adjusted round0 key
1428 vadd.u32 @XMM[10], @XMM[8], @XMM[9] @ compose 3<<96
1429 vadd.u32 @XMM[1], @XMM[0], @XMM[8] @ +1
1430 vadd.u32 @XMM[2], @XMM[0], @XMM[9] @ +2
1431 vadd.u32 @XMM[3], @XMM[0], @XMM[10] @ +3
1432 vadd.u32 @XMM[4], @XMM[1], @XMM[10]
1433 vadd.u32 @XMM[5], @XMM[2], @XMM[10]
1434 vadd.u32 @XMM[6], @XMM[3], @XMM[10]
1435 vadd.u32 @XMM[7], @XMM[4], @XMM[10]
1436 vadd.u32 @XMM[10], @XMM[5], @XMM[10] @ next counter
1438 @ Borrow prologue from _bsaes_encrypt8 to use the opportunity
1439 @ to flip byte order in 32-bit counter
1441 vldmia $keysched, {@XMM[9]} @ load round0 key
1442 #ifndef BSAES_ASM_EXTENDED_KEY
1443 add r4, $keysched, #0x10 @ pass next round key
1445 add r4, $key, #`248+16`
1447 vldmia $ctr, {@XMM[8]} @ .LREVM0SR
1448 mov r5, $rounds @ pass rounds
1449 vstmia $fp, {@XMM[10]} @ save next counter
1450 sub $const, $ctr, #.LREVM0SR-.LSR @ pass constants
1452 bl _bsaes_encrypt8_alt
1455 blo .Lctr_enc_loop_done
1457 vld1.8 {@XMM[8]-@XMM[9]}, [$inp]! @ load input
1458 vld1.8 {@XMM[10]-@XMM[11]}, [$inp]!
1459 veor @XMM[0], @XMM[8]
1460 veor @XMM[1], @XMM[9]
1461 vld1.8 {@XMM[12]-@XMM[13]}, [$inp]!
1462 veor @XMM[4], @XMM[10]
1463 veor @XMM[6], @XMM[11]
1464 vld1.8 {@XMM[14]-@XMM[15]}, [$inp]!
1465 veor @XMM[3], @XMM[12]
1466 vst1.8 {@XMM[0]-@XMM[1]}, [$out]! @ write output
1467 veor @XMM[7], @XMM[13]
1468 veor @XMM[2], @XMM[14]
1469 vst1.8 {@XMM[4]}, [$out]!
1470 veor @XMM[5], @XMM[15]
1471 vst1.8 {@XMM[6]}, [$out]!
1472 vmov.i32 @XMM[8], #1 @ compose 1<<96
1473 vst1.8 {@XMM[3]}, [$out]!
1474 veor @XMM[9], @XMM[9], @XMM[9]
1475 vst1.8 {@XMM[7]}, [$out]!
1476 vext.8 @XMM[8], @XMM[9], @XMM[8], #4
1477 vst1.8 {@XMM[2]}, [$out]!
1478 vadd.u32 @XMM[9],@XMM[8],@XMM[8] @ compose 2<<96
1479 vst1.8 {@XMM[5]}, [$out]!
1480 vldmia $fp, {@XMM[0]} @ load counter
1486 .Lctr_enc_loop_done:
1488 vld1.8 {@XMM[8]}, [$inp]! @ load input
1489 veor @XMM[0], @XMM[8]
1490 vst1.8 {@XMM[0]}, [$out]! @ write output
1493 vld1.8 {@XMM[9]}, [$inp]!
1494 veor @XMM[1], @XMM[9]
1495 vst1.8 {@XMM[1]}, [$out]!
1497 vld1.8 {@XMM[10]}, [$inp]!
1498 veor @XMM[4], @XMM[10]
1499 vst1.8 {@XMM[4]}, [$out]!
1502 vld1.8 {@XMM[11]}, [$inp]!
1503 veor @XMM[6], @XMM[11]
1504 vst1.8 {@XMM[6]}, [$out]!
1506 vld1.8 {@XMM[12]}, [$inp]!
1507 veor @XMM[3], @XMM[12]
1508 vst1.8 {@XMM[3]}, [$out]!
1511 vld1.8 {@XMM[13]}, [$inp]!
1512 veor @XMM[7], @XMM[13]
1513 vst1.8 {@XMM[7]}, [$out]!
1515 vld1.8 {@XMM[14]}, [$inp]
1516 veor @XMM[2], @XMM[14]
1517 vst1.8 {@XMM[2]}, [$out]!
1522 #ifndef BSAES_ASM_EXTENDED_KEY
1523 .Lctr_enc_bzero: @ wipe key schedule [if any]
1524 vstmia $keysched!, {q0-q1}
1528 vstmia $keysched, {q0-q1}
1532 add sp, #0x10 @ add sp,$fp,#0x10 is no good for thumb
1534 ldmia sp!, {r4-r10, pc} @ return
1538 ldr ip, [sp] @ ctr pointer is passed on stack
1539 stmdb sp!, {r4-r8, lr}
1541 mov r4, $inp @ copy arguments
1545 ldr r8, [ip, #12] @ load counter LSW
1546 vld1.8 {@XMM[1]}, [ip] @ load whole counter value
1551 vst1.8 {@XMM[1]}, [sp,:64] @ copy counter value
1554 .Lctr_enc_short_loop:
1555 add r0, sp, #0x10 @ input counter value
1556 mov r1, sp @ output on the stack
1561 vld1.8 {@XMM[0]}, [r4]! @ load input
1562 vld1.8 {@XMM[1]}, [sp,:64] @ load encrypted counter
1566 str r0, [sp, #0x1c] @ next counter value
1568 str r8, [sp, #0x1c] @ next counter value
1570 veor @XMM[0],@XMM[0],@XMM[1]
1571 vst1.8 {@XMM[0]}, [r5]! @ store output
1573 bne .Lctr_enc_short_loop
1579 ldmia sp!, {r4-r8, pc}
1580 .size bsaes_ctr32_encrypt_blocks,.-bsaes_ctr32_encrypt_blocks
1584 ######################################################################
1585 # void bsaes_xts_[en|de]crypt(const char *inp,char *out,size_t len,
1586 # const AES_KEY *key1, const AES_KEY *key2,
1587 # const unsigned char iv[16]);
1589 my ($inp,$out,$len,$key,$rounds,$magic,$fp)=(map("r$_",(7..10,1..3)));
1590 my $const="r6"; # returned by _bsaes_key_convert
1595 .globl bsaes_xts_encrypt
1596 .type bsaes_xts_encrypt,%function
1600 stmdb sp!, {r4-r10, lr} @ 0x20
1602 mov r6, sp @ future $fp
1609 sub r0, sp, #0x10 @ 0x10
1610 bic r0, #0xf @ align at 16 bytes
1613 #ifdef XTS_CHAIN_TWEAK
1614 ldr r0, [ip] @ pointer to input tweak
1616 @ generate initial tweak
1617 ldr r0, [ip, #4] @ iv[]
1619 ldr r2, [ip, #0] @ key2
1621 mov r0,sp @ pointer to initial tweak
1624 ldr $rounds, [$key, #240] @ get # of rounds
1626 #ifndef BSAES_ASM_EXTENDED_KEY
1627 @ allocate the key schedule on the stack
1628 sub r12, sp, $rounds, lsl#7 @ 128 bytes per inner round key
1629 @ add r12, #`128-32` @ size of bit-sliced key schedule
1630 sub r12, #`32+16` @ place for tweak[9]
1632 @ populate the key schedule
1633 mov r4, $key @ pass key
1634 mov r5, $rounds @ pass # of rounds
1636 add r12, #0x90 @ pass key schedule
1637 bl _bsaes_key_convert
1638 veor @XMM[7], @XMM[7], @XMM[15] @ fix up last round key
1639 vstmia r12, {@XMM[7]} @ save last round key
1641 ldr r12, [$key, #244]
1645 str r12, [$key, #244]
1646 mov r4, $key @ pass key
1647 mov r5, $rounds @ pass # of rounds
1648 add r12, $key, #248 @ pass key schedule
1649 bl _bsaes_key_convert
1650 veor @XMM[7], @XMM[7], @XMM[15] @ fix up last round key
1651 vstmia r12, {@XMM[7]}
1654 0: sub sp, #0x90 @ place for tweak[9]
1657 vld1.8 {@XMM[8]}, [r0] @ initial tweak
1658 adr $magic, .Lxts_magic
1666 vldmia $magic, {$twmask} @ load XTS magic
1667 vshr.s64 @T[0], @XMM[8], #63
1669 vand @T[0], @T[0], $twmask
1671 for($i=9;$i<16;$i++) {
1673 vadd.u64 @XMM[$i], @XMM[$i-1], @XMM[$i-1]
1674 vst1.64 {@XMM[$i-1]}, [r0,:128]!
1675 vswp `&Dhi("@T[0]")`,`&Dlo("@T[0]")`
1676 vshr.s64 @T[1], @XMM[$i], #63
1677 veor @XMM[$i], @XMM[$i], @T[0]
1678 vand @T[1], @T[1], $twmask
1682 $code.=<<___ if ($i>=10);
1683 vld1.8 {@XMM[$i-10]}, [$inp]!
1685 $code.=<<___ if ($i>=11);
1686 veor @XMM[$i-11], @XMM[$i-11], @XMM[$i-3]
1690 vadd.u64 @XMM[8], @XMM[15], @XMM[15]
1691 vst1.64 {@XMM[15]}, [r0,:128]!
1692 vswp `&Dhi("@T[0]")`,`&Dlo("@T[0]")`
1693 veor @XMM[8], @XMM[8], @T[0]
1694 vst1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1696 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]!
1697 veor @XMM[5], @XMM[5], @XMM[13]
1698 #ifndef BSAES_ASM_EXTENDED_KEY
1699 add r4, sp, #0x90 @ pass key schedule
1701 add r4, $key, #248 @ pass key schedule
1703 veor @XMM[6], @XMM[6], @XMM[14]
1704 mov r5, $rounds @ pass rounds
1705 veor @XMM[7], @XMM[7], @XMM[15]
1710 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
1711 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
1712 veor @XMM[0], @XMM[0], @XMM[ 8]
1713 vld1.64 {@XMM[12]-@XMM[13]}, [r0,:128]!
1714 veor @XMM[1], @XMM[1], @XMM[ 9]
1715 veor @XMM[8], @XMM[4], @XMM[10]
1716 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1717 veor @XMM[9], @XMM[6], @XMM[11]
1718 vld1.64 {@XMM[14]-@XMM[15]}, [r0,:128]!
1719 veor @XMM[10], @XMM[3], @XMM[12]
1720 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
1721 veor @XMM[11], @XMM[7], @XMM[13]
1722 veor @XMM[12], @XMM[2], @XMM[14]
1723 vst1.8 {@XMM[10]-@XMM[11]}, [$out]!
1724 veor @XMM[13], @XMM[5], @XMM[15]
1725 vst1.8 {@XMM[12]-@XMM[13]}, [$out]!
1727 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1736 vldmia $magic, {$twmask} @ load XTS magic
1737 vshr.s64 @T[0], @XMM[8], #63
1739 vand @T[0], @T[0], $twmask
1741 for($i=9;$i<16;$i++) {
1743 vadd.u64 @XMM[$i], @XMM[$i-1], @XMM[$i-1]
1744 vst1.64 {@XMM[$i-1]}, [r0,:128]!
1745 vswp `&Dhi("@T[0]")`,`&Dlo("@T[0]")`
1746 vshr.s64 @T[1], @XMM[$i], #63
1747 veor @XMM[$i], @XMM[$i], @T[0]
1748 vand @T[1], @T[1], $twmask
1752 $code.=<<___ if ($i>=10);
1753 vld1.8 {@XMM[$i-10]}, [$inp]!
1755 bmi .Lxts_enc_`$i-9`
1757 $code.=<<___ if ($i>=11);
1758 veor @XMM[$i-11], @XMM[$i-11], @XMM[$i-3]
1763 vst1.64 {@XMM[15]}, [r0,:128] @ next round tweak
1765 vld1.8 {@XMM[6]}, [$inp]!
1766 veor @XMM[5], @XMM[5], @XMM[13]
1767 #ifndef BSAES_ASM_EXTENDED_KEY
1768 add r4, sp, #0x90 @ pass key schedule
1770 add r4, $key, #248 @ pass key schedule
1772 veor @XMM[6], @XMM[6], @XMM[14]
1773 mov r5, $rounds @ pass rounds
1778 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
1779 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
1780 veor @XMM[0], @XMM[0], @XMM[ 8]
1781 vld1.64 {@XMM[12]-@XMM[13]}, [r0,:128]!
1782 veor @XMM[1], @XMM[1], @XMM[ 9]
1783 veor @XMM[8], @XMM[4], @XMM[10]
1784 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1785 veor @XMM[9], @XMM[6], @XMM[11]
1786 vld1.64 {@XMM[14]}, [r0,:128]!
1787 veor @XMM[10], @XMM[3], @XMM[12]
1788 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
1789 veor @XMM[11], @XMM[7], @XMM[13]
1790 veor @XMM[12], @XMM[2], @XMM[14]
1791 vst1.8 {@XMM[10]-@XMM[11]}, [$out]!
1792 vst1.8 {@XMM[12]}, [$out]!
1794 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1798 vst1.64 {@XMM[14]}, [r0,:128] @ next round tweak
1800 veor @XMM[4], @XMM[4], @XMM[12]
1801 #ifndef BSAES_ASM_EXTENDED_KEY
1802 add r4, sp, #0x90 @ pass key schedule
1804 add r4, $key, #248 @ pass key schedule
1806 veor @XMM[5], @XMM[5], @XMM[13]
1807 mov r5, $rounds @ pass rounds
1812 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
1813 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
1814 veor @XMM[0], @XMM[0], @XMM[ 8]
1815 vld1.64 {@XMM[12]-@XMM[13]}, [r0,:128]!
1816 veor @XMM[1], @XMM[1], @XMM[ 9]
1817 veor @XMM[8], @XMM[4], @XMM[10]
1818 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1819 veor @XMM[9], @XMM[6], @XMM[11]
1820 veor @XMM[10], @XMM[3], @XMM[12]
1821 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
1822 veor @XMM[11], @XMM[7], @XMM[13]
1823 vst1.8 {@XMM[10]-@XMM[11]}, [$out]!
1825 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1828 @ put this in range for both ARM and Thumb mode adr instructions
1835 vst1.64 {@XMM[13]}, [r0,:128] @ next round tweak
1837 veor @XMM[3], @XMM[3], @XMM[11]
1838 #ifndef BSAES_ASM_EXTENDED_KEY
1839 add r4, sp, #0x90 @ pass key schedule
1841 add r4, $key, #248 @ pass key schedule
1843 veor @XMM[4], @XMM[4], @XMM[12]
1844 mov r5, $rounds @ pass rounds
1849 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
1850 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
1851 veor @XMM[0], @XMM[0], @XMM[ 8]
1852 vld1.64 {@XMM[12]}, [r0,:128]!
1853 veor @XMM[1], @XMM[1], @XMM[ 9]
1854 veor @XMM[8], @XMM[4], @XMM[10]
1855 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1856 veor @XMM[9], @XMM[6], @XMM[11]
1857 veor @XMM[10], @XMM[3], @XMM[12]
1858 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
1859 vst1.8 {@XMM[10]}, [$out]!
1861 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1865 vst1.64 {@XMM[12]}, [r0,:128] @ next round tweak
1867 veor @XMM[2], @XMM[2], @XMM[10]
1868 #ifndef BSAES_ASM_EXTENDED_KEY
1869 add r4, sp, #0x90 @ pass key schedule
1871 add r4, $key, #248 @ pass key schedule
1873 veor @XMM[3], @XMM[3], @XMM[11]
1874 mov r5, $rounds @ pass rounds
1879 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
1880 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
1881 veor @XMM[0], @XMM[0], @XMM[ 8]
1882 veor @XMM[1], @XMM[1], @XMM[ 9]
1883 veor @XMM[8], @XMM[4], @XMM[10]
1884 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1885 veor @XMM[9], @XMM[6], @XMM[11]
1886 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
1888 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1892 vst1.64 {@XMM[11]}, [r0,:128] @ next round tweak
1894 veor @XMM[1], @XMM[1], @XMM[9]
1895 #ifndef BSAES_ASM_EXTENDED_KEY
1896 add r4, sp, #0x90 @ pass key schedule
1898 add r4, $key, #248 @ pass key schedule
1900 veor @XMM[2], @XMM[2], @XMM[10]
1901 mov r5, $rounds @ pass rounds
1906 vld1.64 {@XMM[8]-@XMM[9]}, [r0,:128]!
1907 vld1.64 {@XMM[10]}, [r0,:128]!
1908 veor @XMM[0], @XMM[0], @XMM[ 8]
1909 veor @XMM[1], @XMM[1], @XMM[ 9]
1910 veor @XMM[8], @XMM[4], @XMM[10]
1911 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1912 vst1.8 {@XMM[8]}, [$out]!
1914 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1918 vst1.64 {@XMM[10]}, [r0,:128] @ next round tweak
1920 veor @XMM[0], @XMM[0], @XMM[8]
1921 #ifndef BSAES_ASM_EXTENDED_KEY
1922 add r4, sp, #0x90 @ pass key schedule
1924 add r4, $key, #248 @ pass key schedule
1926 veor @XMM[1], @XMM[1], @XMM[9]
1927 mov r5, $rounds @ pass rounds
1932 vld1.64 {@XMM[8]-@XMM[9]}, [r0,:128]!
1933 veor @XMM[0], @XMM[0], @XMM[ 8]
1934 veor @XMM[1], @XMM[1], @XMM[ 9]
1935 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
1937 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
1942 veor @XMM[0], @XMM[8]
1944 vst1.8 {@XMM[0]}, [sp,:128]
1946 mov r4, $fp @ preserve fp
1950 vld1.8 {@XMM[0]}, [sp,:128]
1951 veor @XMM[0], @XMM[0], @XMM[8]
1952 vst1.8 {@XMM[0]}, [$out]!
1955 vmov @XMM[8], @XMM[9] @ next round tweak
1958 #ifndef XTS_CHAIN_TWEAK
1965 ldrb r1, [$out, #-0x10]
1966 strb r0, [$out, #-0x10]
1972 vld1.8 {@XMM[0]}, [r6]
1974 veor @XMM[0], @XMM[0], @XMM[8]
1976 vst1.8 {@XMM[0]}, [sp,:128]
1978 mov r4, $fp @ preserve fp
1982 vld1.8 {@XMM[0]}, [sp,:128]
1983 veor @XMM[0], @XMM[0], @XMM[8]
1984 vst1.8 {@XMM[0]}, [r6]
1992 #ifdef XTS_CHAIN_TWEAK
1993 ldr r1, [$fp, #0x20+VFP_ABI_FRAME] @ chain tweak
1995 .Lxts_enc_bzero: @ wipe key schedule [if any]
2001 #ifdef XTS_CHAIN_TWEAK
2002 vst1.8 {@XMM[8]}, [r1]
2005 ldmia sp!, {r4-r10, pc} @ return
2007 .size bsaes_xts_encrypt,.-bsaes_xts_encrypt
2009 .globl bsaes_xts_decrypt
2010 .type bsaes_xts_decrypt,%function
2014 stmdb sp!, {r4-r10, lr} @ 0x20
2016 mov r6, sp @ future $fp
2023 sub r0, sp, #0x10 @ 0x10
2024 bic r0, #0xf @ align at 16 bytes
2027 #ifdef XTS_CHAIN_TWEAK
2028 ldr r0, [ip] @ pointer to input tweak
2030 @ generate initial tweak
2031 ldr r0, [ip, #4] @ iv[]
2033 ldr r2, [ip, #0] @ key2
2035 mov r0, sp @ pointer to initial tweak
2038 ldr $rounds, [$key, #240] @ get # of rounds
2040 #ifndef BSAES_ASM_EXTENDED_KEY
2041 @ allocate the key schedule on the stack
2042 sub r12, sp, $rounds, lsl#7 @ 128 bytes per inner round key
2043 @ add r12, #`128-32` @ size of bit-sliced key schedule
2044 sub r12, #`32+16` @ place for tweak[9]
2046 @ populate the key schedule
2047 mov r4, $key @ pass key
2048 mov r5, $rounds @ pass # of rounds
2050 add r12, #0x90 @ pass key schedule
2051 bl _bsaes_key_convert
2053 vldmia r4, {@XMM[6]}
2054 vstmia r12, {@XMM[15]} @ save last round key
2055 veor @XMM[7], @XMM[7], @XMM[6] @ fix up round 0 key
2056 vstmia r4, {@XMM[7]}
2058 ldr r12, [$key, #244]
2062 str r12, [$key, #244]
2063 mov r4, $key @ pass key
2064 mov r5, $rounds @ pass # of rounds
2065 add r12, $key, #248 @ pass key schedule
2066 bl _bsaes_key_convert
2068 vldmia r4, {@XMM[6]}
2069 vstmia r12, {@XMM[15]} @ save last round key
2070 veor @XMM[7], @XMM[7], @XMM[6] @ fix up round 0 key
2071 vstmia r4, {@XMM[7]}
2074 0: sub sp, #0x90 @ place for tweak[9]
2076 vld1.8 {@XMM[8]}, [r0] @ initial tweak
2077 adr $magic, .Lxts_magic
2079 tst $len, #0xf @ if not multiple of 16
2080 it ne @ Thumb2 thing, sanity check in ARM
2081 subne $len, #0x10 @ subtract another 16 bytes
2089 vldmia $magic, {$twmask} @ load XTS magic
2090 vshr.s64 @T[0], @XMM[8], #63
2092 vand @T[0], @T[0], $twmask
2094 for($i=9;$i<16;$i++) {
2096 vadd.u64 @XMM[$i], @XMM[$i-1], @XMM[$i-1]
2097 vst1.64 {@XMM[$i-1]}, [r0,:128]!
2098 vswp `&Dhi("@T[0]")`,`&Dlo("@T[0]")`
2099 vshr.s64 @T[1], @XMM[$i], #63
2100 veor @XMM[$i], @XMM[$i], @T[0]
2101 vand @T[1], @T[1], $twmask
2105 $code.=<<___ if ($i>=10);
2106 vld1.8 {@XMM[$i-10]}, [$inp]!
2108 $code.=<<___ if ($i>=11);
2109 veor @XMM[$i-11], @XMM[$i-11], @XMM[$i-3]
2113 vadd.u64 @XMM[8], @XMM[15], @XMM[15]
2114 vst1.64 {@XMM[15]}, [r0,:128]!
2115 vswp `&Dhi("@T[0]")`,`&Dlo("@T[0]")`
2116 veor @XMM[8], @XMM[8], @T[0]
2117 vst1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2119 vld1.8 {@XMM[6]-@XMM[7]}, [$inp]!
2120 veor @XMM[5], @XMM[5], @XMM[13]
2121 #ifndef BSAES_ASM_EXTENDED_KEY
2122 add r4, sp, #0x90 @ pass key schedule
2124 add r4, $key, #248 @ pass key schedule
2126 veor @XMM[6], @XMM[6], @XMM[14]
2127 mov r5, $rounds @ pass rounds
2128 veor @XMM[7], @XMM[7], @XMM[15]
2133 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
2134 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
2135 veor @XMM[0], @XMM[0], @XMM[ 8]
2136 vld1.64 {@XMM[12]-@XMM[13]}, [r0,:128]!
2137 veor @XMM[1], @XMM[1], @XMM[ 9]
2138 veor @XMM[8], @XMM[6], @XMM[10]
2139 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2140 veor @XMM[9], @XMM[4], @XMM[11]
2141 vld1.64 {@XMM[14]-@XMM[15]}, [r0,:128]!
2142 veor @XMM[10], @XMM[2], @XMM[12]
2143 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
2144 veor @XMM[11], @XMM[7], @XMM[13]
2145 veor @XMM[12], @XMM[3], @XMM[14]
2146 vst1.8 {@XMM[10]-@XMM[11]}, [$out]!
2147 veor @XMM[13], @XMM[5], @XMM[15]
2148 vst1.8 {@XMM[12]-@XMM[13]}, [$out]!
2150 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2159 vldmia $magic, {$twmask} @ load XTS magic
2160 vshr.s64 @T[0], @XMM[8], #63
2162 vand @T[0], @T[0], $twmask
2164 for($i=9;$i<16;$i++) {
2166 vadd.u64 @XMM[$i], @XMM[$i-1], @XMM[$i-1]
2167 vst1.64 {@XMM[$i-1]}, [r0,:128]!
2168 vswp `&Dhi("@T[0]")`,`&Dlo("@T[0]")`
2169 vshr.s64 @T[1], @XMM[$i], #63
2170 veor @XMM[$i], @XMM[$i], @T[0]
2171 vand @T[1], @T[1], $twmask
2175 $code.=<<___ if ($i>=10);
2176 vld1.8 {@XMM[$i-10]}, [$inp]!
2178 bmi .Lxts_dec_`$i-9`
2180 $code.=<<___ if ($i>=11);
2181 veor @XMM[$i-11], @XMM[$i-11], @XMM[$i-3]
2186 vst1.64 {@XMM[15]}, [r0,:128] @ next round tweak
2188 vld1.8 {@XMM[6]}, [$inp]!
2189 veor @XMM[5], @XMM[5], @XMM[13]
2190 #ifndef BSAES_ASM_EXTENDED_KEY
2191 add r4, sp, #0x90 @ pass key schedule
2193 add r4, $key, #248 @ pass key schedule
2195 veor @XMM[6], @XMM[6], @XMM[14]
2196 mov r5, $rounds @ pass rounds
2201 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
2202 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
2203 veor @XMM[0], @XMM[0], @XMM[ 8]
2204 vld1.64 {@XMM[12]-@XMM[13]}, [r0,:128]!
2205 veor @XMM[1], @XMM[1], @XMM[ 9]
2206 veor @XMM[8], @XMM[6], @XMM[10]
2207 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2208 veor @XMM[9], @XMM[4], @XMM[11]
2209 vld1.64 {@XMM[14]}, [r0,:128]!
2210 veor @XMM[10], @XMM[2], @XMM[12]
2211 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
2212 veor @XMM[11], @XMM[7], @XMM[13]
2213 veor @XMM[12], @XMM[3], @XMM[14]
2214 vst1.8 {@XMM[10]-@XMM[11]}, [$out]!
2215 vst1.8 {@XMM[12]}, [$out]!
2217 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2221 vst1.64 {@XMM[14]}, [r0,:128] @ next round tweak
2223 veor @XMM[4], @XMM[4], @XMM[12]
2224 #ifndef BSAES_ASM_EXTENDED_KEY
2225 add r4, sp, #0x90 @ pass key schedule
2227 add r4, $key, #248 @ pass key schedule
2229 veor @XMM[5], @XMM[5], @XMM[13]
2230 mov r5, $rounds @ pass rounds
2235 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
2236 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
2237 veor @XMM[0], @XMM[0], @XMM[ 8]
2238 vld1.64 {@XMM[12]-@XMM[13]}, [r0,:128]!
2239 veor @XMM[1], @XMM[1], @XMM[ 9]
2240 veor @XMM[8], @XMM[6], @XMM[10]
2241 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2242 veor @XMM[9], @XMM[4], @XMM[11]
2243 veor @XMM[10], @XMM[2], @XMM[12]
2244 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
2245 veor @XMM[11], @XMM[7], @XMM[13]
2246 vst1.8 {@XMM[10]-@XMM[11]}, [$out]!
2248 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2252 vst1.64 {@XMM[13]}, [r0,:128] @ next round tweak
2254 veor @XMM[3], @XMM[3], @XMM[11]
2255 #ifndef BSAES_ASM_EXTENDED_KEY
2256 add r4, sp, #0x90 @ pass key schedule
2258 add r4, $key, #248 @ pass key schedule
2260 veor @XMM[4], @XMM[4], @XMM[12]
2261 mov r5, $rounds @ pass rounds
2266 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
2267 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
2268 veor @XMM[0], @XMM[0], @XMM[ 8]
2269 vld1.64 {@XMM[12]}, [r0,:128]!
2270 veor @XMM[1], @XMM[1], @XMM[ 9]
2271 veor @XMM[8], @XMM[6], @XMM[10]
2272 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2273 veor @XMM[9], @XMM[4], @XMM[11]
2274 veor @XMM[10], @XMM[2], @XMM[12]
2275 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
2276 vst1.8 {@XMM[10]}, [$out]!
2278 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2282 vst1.64 {@XMM[12]}, [r0,:128] @ next round tweak
2284 veor @XMM[2], @XMM[2], @XMM[10]
2285 #ifndef BSAES_ASM_EXTENDED_KEY
2286 add r4, sp, #0x90 @ pass key schedule
2288 add r4, $key, #248 @ pass key schedule
2290 veor @XMM[3], @XMM[3], @XMM[11]
2291 mov r5, $rounds @ pass rounds
2296 vld1.64 {@XMM[ 8]-@XMM[ 9]}, [r0,:128]!
2297 vld1.64 {@XMM[10]-@XMM[11]}, [r0,:128]!
2298 veor @XMM[0], @XMM[0], @XMM[ 8]
2299 veor @XMM[1], @XMM[1], @XMM[ 9]
2300 veor @XMM[8], @XMM[6], @XMM[10]
2301 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2302 veor @XMM[9], @XMM[4], @XMM[11]
2303 vst1.8 {@XMM[8]-@XMM[9]}, [$out]!
2305 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2309 vst1.64 {@XMM[11]}, [r0,:128] @ next round tweak
2311 veor @XMM[1], @XMM[1], @XMM[9]
2312 #ifndef BSAES_ASM_EXTENDED_KEY
2313 add r4, sp, #0x90 @ pass key schedule
2315 add r4, $key, #248 @ pass key schedule
2317 veor @XMM[2], @XMM[2], @XMM[10]
2318 mov r5, $rounds @ pass rounds
2323 vld1.64 {@XMM[8]-@XMM[9]}, [r0,:128]!
2324 vld1.64 {@XMM[10]}, [r0,:128]!
2325 veor @XMM[0], @XMM[0], @XMM[ 8]
2326 veor @XMM[1], @XMM[1], @XMM[ 9]
2327 veor @XMM[8], @XMM[6], @XMM[10]
2328 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2329 vst1.8 {@XMM[8]}, [$out]!
2331 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2335 vst1.64 {@XMM[10]}, [r0,:128] @ next round tweak
2337 veor @XMM[0], @XMM[0], @XMM[8]
2338 #ifndef BSAES_ASM_EXTENDED_KEY
2339 add r4, sp, #0x90 @ pass key schedule
2341 add r4, $key, #248 @ pass key schedule
2343 veor @XMM[1], @XMM[1], @XMM[9]
2344 mov r5, $rounds @ pass rounds
2349 vld1.64 {@XMM[8]-@XMM[9]}, [r0,:128]!
2350 veor @XMM[0], @XMM[0], @XMM[ 8]
2351 veor @XMM[1], @XMM[1], @XMM[ 9]
2352 vst1.8 {@XMM[0]-@XMM[1]}, [$out]!
2354 vld1.64 {@XMM[8]}, [r0,:128] @ next round tweak
2359 veor @XMM[0], @XMM[8]
2361 vst1.8 {@XMM[0]}, [sp,:128]
2363 mov r4, $fp @ preserve fp
2364 mov r5, $magic @ preserve magic
2368 vld1.8 {@XMM[0]}, [sp,:128]
2369 veor @XMM[0], @XMM[0], @XMM[8]
2370 vst1.8 {@XMM[0]}, [$out]!
2374 vmov @XMM[8], @XMM[9] @ next round tweak
2377 #ifndef XTS_CHAIN_TWEAK
2381 @ calculate one round of extra tweak for the stolen ciphertext
2382 vldmia $magic, {$twmask}
2383 vshr.s64 @XMM[6], @XMM[8], #63
2384 vand @XMM[6], @XMM[6], $twmask
2385 vadd.u64 @XMM[9], @XMM[8], @XMM[8]
2386 vswp `&Dhi("@XMM[6]")`,`&Dlo("@XMM[6]")`
2387 veor @XMM[9], @XMM[9], @XMM[6]
2389 @ perform the final decryption with the last tweak value
2390 vld1.8 {@XMM[0]}, [$inp]!
2392 veor @XMM[0], @XMM[0], @XMM[9]
2394 vst1.8 {@XMM[0]}, [sp,:128]
2396 mov r4, $fp @ preserve fp
2400 vld1.8 {@XMM[0]}, [sp,:128]
2401 veor @XMM[0], @XMM[0], @XMM[9]
2402 vst1.8 {@XMM[0]}, [$out]
2408 strb r1, [$out, #0x10]
2414 vld1.8 {@XMM[0]}, [r6]
2416 veor @XMM[0], @XMM[8]
2418 vst1.8 {@XMM[0]}, [sp,:128]
2423 vld1.8 {@XMM[0]}, [sp,:128]
2424 veor @XMM[0], @XMM[0], @XMM[8]
2425 vst1.8 {@XMM[0]}, [r6]
2433 #ifdef XTS_CHAIN_TWEAK
2434 ldr r1, [$fp, #0x20+VFP_ABI_FRAME] @ chain tweak
2436 .Lxts_dec_bzero: @ wipe key schedule [if any]
2442 #ifdef XTS_CHAIN_TWEAK
2443 vst1.8 {@XMM[8]}, [r1]
2446 ldmia sp!, {r4-r10, pc} @ return
2448 .size bsaes_xts_decrypt,.-bsaes_xts_decrypt
2455 $code =~ s/\`([^\`]*)\`/eval($1)/gem;
2460 last if (!s/^#/@/ and !/^$/);