summaryrefslogtreecommitdiffstats
path: root/src/crypto/isa-l/isa-l_crypto/aes/XTS_AES_256_enc_expanded_key_sse.asm
blob: 47fe652814a97a2d4e2dd46bfa6519ff4fcd9bd6 (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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;  Copyright(c) 2011-2016 Intel Corporation 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.
;    * Neither the name of Intel Corporation nor the names of its
;      contributors may be used to endorse or promote products derived
;      from this software without specific prior written permission.
;
;  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
;  "AS IS" AND ANY EXPRESS 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 COPYRIGHT
;  OWNER OR CONTRIBUTORS 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.
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; XTS encrypt function with 256-bit AES
; expanded keys are not aligned
; plaintext and ciphertext are not aligned
; second key is stored in the stack as aligned to 16 Bytes
; first key is required only once, no need for storage of this key

%include "reg_sizes.asm"

default rel
%define TW              rsp     ; store 8 tweak values
%define keys    rsp + 16*8      ; store 15 expanded keys

%ifidn __OUTPUT_FORMAT__, win64
	%define _xmm    rsp + 16*23     ; store xmm6:xmm15
%endif

%ifidn __OUTPUT_FORMAT__, elf64
%define _gpr    rsp + 16*23     ; store rbx
%define VARIABLE_OFFSET 16*8 + 16*15 + 8*1     ; VARIABLE_OFFSET has to be an odd multiple of 8
%else
%define _gpr    rsp + 16*33     ; store rdi, rsi, rbx
%define VARIABLE_OFFSET 16*8 + 16*15 + 16*10 + 8*3     ; VARIABLE_OFFSET has to be an odd multiple of 8
%endif

%define GHASH_POLY 0x87

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;void XTS_AES_256_enc_expanded_key_sse(
;               UINT8 *k2,      // key used for tweaking, 16*15 bytes
;               UINT8 *k1,      // key used for "ECB" encryption, 16*15 bytes
;               UINT8 *TW_initial,      // initial tweak value, 16 bytes
;               UINT64 N,       // sector size, in bytes
;               const UINT8 *pt,        // plaintext sector input data
;               UINT8 *ct);     // ciphertext sector output data
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; arguments for input parameters
%ifidn __OUTPUT_FORMAT__, elf64
	%xdefine ptr_key2 rdi
	%xdefine ptr_key1 rsi
	%xdefine T_val rdx
	%xdefine N_val rcx
	%xdefine ptr_plaintext r8
	%xdefine ptr_ciphertext r9
%else
	%xdefine ptr_key2 rcx
	%xdefine ptr_key1 rdx
	%xdefine T_val r8
	%xdefine N_val r9
	%xdefine ptr_plaintext r10; [rsp + VARIABLE_OFFSET + 8*5]
	%xdefine ptr_ciphertext r11; [rsp + VARIABLE_OFFSET + 8*6]
%endif

; arguments for temp parameters
%ifidn __OUTPUT_FORMAT__, elf64
	%define tmp1                    rdi
	%define target_ptr_val          rsi
	%define ghash_poly_8b           r10
	%define ghash_poly_8b_temp      r11
%else
	%define tmp1                    rcx
	%define target_ptr_val          rdx
	%define ghash_poly_8b           rdi
	%define ghash_poly_8b_temp      rsi
%endif

%define twtempl rax     ; global temp registers used for tweak computation
%define twtemph rbx


; macro to encrypt the tweak value

%macro  encrypt_T 8
%define %%xkey2         %1
%define %%xstate_tweak  %2
%define %%xkey1         %3
%define %%xraw_key      %4
%define %%xtmp          %5
%define %%ptr_key2      %6
%define %%ptr_key1      %7
%define %%ptr_expanded_keys     %8

	movdqu  %%xkey2, [%%ptr_key2]
	pxor    %%xstate_tweak, %%xkey2                         ; ARK for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1]
	movdqa  [%%ptr_expanded_keys+16*0], %%xkey1             ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*1]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 1 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*1]
	movdqa  [%%ptr_expanded_keys+16*1], %%xkey1             ; store round keys in stack


	movdqu  %%xkey2, [%%ptr_key2 + 16*2]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 2 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*2]
	movdqa  [%%ptr_expanded_keys+16*2], %%xkey1             ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*3]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 3 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*3]
	movdqa  [%%ptr_expanded_keys+16*3], %%xkey1             ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*4]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 4 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*4]
	movdqa  [%%ptr_expanded_keys+16*4], %%xkey1             ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*5]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 5 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*5]
	movdqa  [%%ptr_expanded_keys+16*5], %%xkey1             ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*6]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 6 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*6]
	movdqa  [%%ptr_expanded_keys+16*6], %%xkey1             ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*7]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 7 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*7]
	movdqa  [%%ptr_expanded_keys+16*7], %%xkey1             ; store round keys in stack


	movdqu  %%xkey2, [%%ptr_key2 + 16*8]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 8 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*8]
	movdqa  [%%ptr_expanded_keys+16*8], %%xkey1             ; store round keys in stack


	movdqu  %%xkey2, [%%ptr_key2 + 16*9]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 9 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*9]
	movdqa  [%%ptr_expanded_keys+16*9], %%xkey1             ; store round keys in stack


	movdqu  %%xkey2, [%%ptr_key2 + 16*10]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 10 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*10]
	movdqa  [%%ptr_expanded_keys+16*10], %%xkey1            ; store round keys in stack


	movdqu  %%xkey2, [%%ptr_key2 + 16*11]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 11 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*11]
	movdqa  [%%ptr_expanded_keys+16*11], %%xkey1            ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*12]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 12 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*12]
	movdqa  [%%ptr_expanded_keys+16*12], %%xkey1            ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*13]
	aesenc  %%xstate_tweak, %%xkey2                         ; round 13 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*13]
	movdqa  [%%ptr_expanded_keys+16*13], %%xkey1            ; store round keys in stack

	movdqu  %%xkey2, [%%ptr_key2 + 16*14]
	aesenclast      %%xstate_tweak, %%xkey2                 ; round 14 for tweak encryption

	movdqu  %%xkey1, [%%ptr_key1 + 16*14]
	movdqa  [%%ptr_expanded_keys+16*14], %%xkey1            ; store round keys in stack

	movdqa  [TW], %%xstate_tweak                            ; Store the encrypted Tweak value
%endmacro


; generate initial tweak values
; load initial plaintext values
%macro  initialize 16

%define %%ST1   %1      ; state 1
%define %%ST2   %2      ; state 2
%define %%ST3   %3      ; state 3
%define %%ST4   %4      ; state 4
%define %%ST5   %5      ; state 5
%define %%ST6   %6      ; state 6
%define %%ST7   %7      ; state 7
%define %%ST8   %8      ; state 8

%define %%TW1   %9      ; tweak 1
%define %%TW2   %10     ; tweak 2
%define %%TW3   %11     ; tweak 3
%define %%TW4   %12     ; tweak 4
%define %%TW5   %13     ; tweak 5
%define %%TW6   %14     ; tweak 6
%define %%TW7   %15     ; tweak 7

%define %%num_initial_blocks    %16


		; generate next Tweak values
		movdqa  %%TW1, [TW+16*0]
		mov     twtempl, [TW+8*0]
		mov     twtemph, [TW+8*1]
		movdqu  %%ST1, [ptr_plaintext+16*0]
%if (%%num_initial_blocks>=2)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW+8*2], twtempl
		mov     [TW+8*3], twtemph;
		movdqa  %%TW2, [TW+16*1]
		movdqu  %%ST2, [ptr_plaintext+16*1]
%endif
%if (%%num_initial_blocks>=3)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW+8*4], twtempl
		mov     [TW+8*5], twtemph;
		movdqa  %%TW3, [TW+16*2]
		movdqu  %%ST3, [ptr_plaintext+16*2]
%endif
%if (%%num_initial_blocks>=4)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW+8*6], twtempl
		mov     [TW+8*7], twtemph;
		movdqa  %%TW4, [TW+16*3]
		movdqu  %%ST4, [ptr_plaintext+16*3]
%endif
%if (%%num_initial_blocks>=5)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW+8*8], twtempl
		mov     [TW+8*9], twtemph;
		movdqa  %%TW5, [TW+16*4]
		movdqu  %%ST5, [ptr_plaintext+16*4]
%endif
%if (%%num_initial_blocks>=6)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW+8*10], twtempl
		mov     [TW+8*11], twtemph;
		movdqa  %%TW6, [TW+16*5]
		movdqu  %%ST6, [ptr_plaintext+16*5]
%endif
%if (%%num_initial_blocks>=7)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW+8*12], twtempl
		mov     [TW+8*13], twtemph;
		movdqa  %%TW7, [TW+16*6]
		movdqu  %%ST7, [ptr_plaintext+16*6]
%endif



%endmacro


; encrypt initial blocks of AES
; 1, 2, 3, 4, 5, 6 or 7 blocks are encrypted
; next 8 Tweak values are generated
%macro  encrypt_initial 18
%define %%ST1   %1      ; state 1
%define %%ST2   %2      ; state 2
%define %%ST3   %3      ; state 3
%define %%ST4   %4      ; state 4
%define %%ST5   %5      ; state 5
%define %%ST6   %6      ; state 6
%define %%ST7   %7      ; state 7
%define %%ST8   %8      ; state 8

%define %%TW1   %9      ; tweak 1
%define %%TW2   %10     ; tweak 2
%define %%TW3   %11     ; tweak 3
%define %%TW4   %12     ; tweak 4
%define %%TW5   %13     ; tweak 5
%define %%TW6   %14     ; tweak 6
%define %%TW7   %15     ; tweak 7
%define %%T0    %16     ; Temp register
%define %%num_blocks    %17
; %%num_blocks blocks encrypted
; %%num_blocks can be 1, 2, 3, 4, 5, 6, 7

%define %%lt128  %18     ; less than 128 bytes

	; xor Tweak value
	pxor    %%ST1, %%TW1
%if (%%num_blocks>=2)
	pxor    %%ST2, %%TW2
%endif
%if (%%num_blocks>=3)
	pxor    %%ST3, %%TW3
%endif
%if (%%num_blocks>=4)
	pxor    %%ST4, %%TW4
%endif
%if (%%num_blocks>=5)
	pxor    %%ST5, %%TW5
%endif
%if (%%num_blocks>=6)
	pxor    %%ST6, %%TW6
%endif
%if (%%num_blocks>=7)
	pxor    %%ST7, %%TW7
%endif


	; ARK
	movdqa  %%T0, [keys]
	pxor    %%ST1, %%T0
%if (%%num_blocks>=2)
	pxor    %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	pxor    %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	pxor    %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	pxor    %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	pxor    %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	pxor    %%ST7, %%T0
%endif


	%if (0 == %%lt128)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
	%endif

	; round 1
	movdqa  %%T0, [keys + 16*1]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif
	%if (0 == %%lt128)
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*0], twtempl     ; next Tweak1 generated
		mov     [TW + 8*1], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
	%endif

	; round 2
	movdqa  %%T0, [keys + 16*2]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*2], twtempl ; next Tweak2 generated
	%endif

	; round 3
	movdqa  %%T0, [keys + 16*3]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif
	%if (0 == %%lt128)
		mov     [TW + 8*3], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
	%endif

	; round 4
	movdqa  %%T0, [keys + 16*4]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*4], twtempl ; next Tweak3 generated
		mov     [TW + 8*5], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
	%endif

	; round 5
	movdqa  %%T0, [keys + 16*5]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*6], twtempl ; next Tweak4 generated
		mov     [TW + 8*7], twtemph
	%endif

	; round 6
	movdqa  %%T0, [keys + 16*6]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*8], twtempl ; next Tweak5 generated
		mov     [TW + 8*9], twtemph
	%endif

	; round 7
	movdqa  %%T0, [keys + 16*7]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*10], twtempl ; next Tweak6 generated
		mov     [TW + 8*11], twtemph
	%endif
	; round 8
	movdqa  %%T0, [keys + 16*8]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*12], twtempl ; next Tweak7 generated
		mov     [TW + 8*13], twtemph
	%endif
	; round 9
	movdqa  %%T0, [keys + 16*9]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	%if (0 == %%lt128)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*14], twtempl ; next Tweak8 generated
		mov     [TW + 8*15], twtemph
	%endif
	; round 10
	movdqa  %%T0, [keys + 16*10]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif
	; round 11
	movdqa  %%T0, [keys + 16*11]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	; round 12
	movdqa  %%T0, [keys + 16*12]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	; round 13
	movdqa  %%T0, [keys + 16*13]
	aesenc  %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenc  %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenc  %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenc  %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenc  %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenc  %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenc  %%ST7, %%T0
%endif

	; round 14
	movdqa  %%T0, [keys + 16*14]
	aesenclast      %%ST1, %%T0
%if (%%num_blocks>=2)
	aesenclast      %%ST2, %%T0
%endif
%if (%%num_blocks>=3)
	aesenclast      %%ST3, %%T0
%endif
%if (%%num_blocks>=4)
	aesenclast      %%ST4, %%T0
%endif
%if (%%num_blocks>=5)
	aesenclast      %%ST5, %%T0
%endif
%if (%%num_blocks>=6)
	aesenclast      %%ST6, %%T0
%endif
%if (%%num_blocks>=7)
	aesenclast      %%ST7, %%T0
%endif

	; xor Tweak values
	pxor    %%ST1, %%TW1
%if (%%num_blocks>=2)
	pxor    %%ST2, %%TW2
%endif
%if (%%num_blocks>=3)
	pxor    %%ST3, %%TW3
%endif
%if (%%num_blocks>=4)
	pxor    %%ST4, %%TW4
%endif
%if (%%num_blocks>=5)
	pxor    %%ST5, %%TW5
%endif
%if (%%num_blocks>=6)
	pxor    %%ST6, %%TW6
%endif
%if (%%num_blocks>=7)
	pxor    %%ST7, %%TW7
%endif


%if (0 == %%lt128)
		; load next Tweak values
		movdqa  %%TW1, [TW + 16*0]
		movdqa  %%TW2, [TW + 16*1]
		movdqa  %%TW3, [TW + 16*2]
		movdqa  %%TW4, [TW + 16*3]
		movdqa  %%TW5, [TW + 16*4]
		movdqa  %%TW6, [TW + 16*5]
		movdqa  %%TW7, [TW + 16*6]

%endif

%endmacro


; Encrypt 8 blocks in parallel
; generate next 8 tweak values
%macro  encrypt_by_eight 18
%define %%ST1   %1      ; state 1
%define %%ST2   %2      ; state 2
%define %%ST3   %3      ; state 3
%define %%ST4   %4      ; state 4
%define %%ST5   %5      ; state 5
%define %%ST6   %6      ; state 6
%define %%ST7   %7      ; state 7
%define %%ST8   %8      ; state 8
%define %%TW1   %9      ; tweak 1
%define %%TW2   %10     ; tweak 2
%define %%TW3   %11     ; tweak 3
%define %%TW4   %12     ; tweak 4
%define %%TW5   %13     ; tweak 5
%define %%TW6   %14     ; tweak 6
%define %%TW7   %15     ; tweak 7
%define %%TW8   %16     ; tweak 8
%define %%T0    %17     ; Temp register
%define %%last_eight     %18

	; xor Tweak values
	pxor    %%ST1, %%TW1
	pxor    %%ST2, %%TW2
	pxor    %%ST3, %%TW3
	pxor    %%ST4, %%TW4
	pxor    %%ST5, %%TW5
	pxor    %%ST6, %%TW6
	pxor    %%ST7, %%TW7
	pxor    %%ST8, %%TW8

	; ARK
	movdqa %%T0, [keys]
	pxor    %%ST1, %%T0
	pxor    %%ST2, %%T0
	pxor    %%ST3, %%T0
	pxor    %%ST4, %%T0
	pxor    %%ST5, %%T0
	pxor    %%ST6, %%T0
	pxor    %%ST7, %%T0
	pxor    %%ST8, %%T0

%if (0 == %%last_eight)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
%endif
	; round 1
	movdqa %%T0, [keys + 16*1]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*0], twtempl
		mov     [TW + 8*1], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
%endif
	; round 2
	movdqa %%T0, [keys + 16*2]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp

%endif
	; round 3
	movdqa %%T0, [keys + 16*3]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		mov     [TW + 8*2], twtempl
		mov     [TW + 8*3], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
%endif
	; round 4
	movdqa %%T0, [keys + 16*4]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*4], twtempl
%endif
	; round 5
	movdqa %%T0, [keys + 16*5]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		mov     [TW + 8*5], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
%endif
	; round 6
	movdqa %%T0, [keys + 16*6]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*6], twtempl
		mov     [TW + 8*7], twtemph
%endif
	; round 7
	movdqa %%T0, [keys + 16*7]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
%endif
	; round 8
	movdqa %%T0, [keys + 16*8]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*8], twtempl
		mov     [TW + 8*9], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
%endif
	; round 9
	movdqa %%T0, [keys + 16*9]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		shl     twtempl, 1
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
%endif
	; round 10
	movdqa %%T0, [keys + 16*10]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		mov     [TW + 8*10], twtempl
		mov     [TW + 8*11], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
%endif
	; round 11
	movdqa %%T0, [keys + 16*11]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		adc     twtemph, twtemph
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
		mov     [TW + 8*12], twtempl
%endif
	; round 12
	movdqa %%T0, [keys + 16*12]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		mov     [TW + 8*13], twtemph
		xor     ghash_poly_8b_temp, ghash_poly_8b_temp
		shl     twtempl, 1
		adc     twtemph, twtemph
%endif
	; round 13
	movdqa %%T0, [keys + 16*13]
	aesenc  %%ST1, %%T0
	aesenc  %%ST2, %%T0
	aesenc  %%ST3, %%T0
	aesenc  %%ST4, %%T0
	aesenc  %%ST5, %%T0
	aesenc  %%ST6, %%T0
	aesenc  %%ST7, %%T0
	aesenc  %%ST8, %%T0
%if (0 == %%last_eight)
		cmovc   ghash_poly_8b_temp, ghash_poly_8b
		xor     twtempl, ghash_poly_8b_temp
;               mov     [TW + 8*14], twtempl
;               mov     [TW + 8*15], twtemph
%endif
	; round 14
	movdqa %%T0, [keys + 16*14]
	aesenclast      %%ST1, %%T0
	aesenclast      %%ST2, %%T0
	aesenclast      %%ST3, %%T0
	aesenclast      %%ST4, %%T0
	aesenclast      %%ST5, %%T0
	aesenclast      %%ST6, %%T0
	aesenclast      %%ST7, %%T0
	aesenclast      %%ST8, %%T0

	; xor Tweak values
	pxor    %%ST1, %%TW1
	pxor    %%ST2, %%TW2
	pxor    %%ST3, %%TW3
	pxor    %%ST4, %%TW4
	pxor    %%ST5, %%TW5
	pxor    %%ST6, %%TW6
	pxor    %%ST7, %%TW7
	pxor    %%ST8, %%TW8

		mov     [TW + 8*14], twtempl
		mov     [TW + 8*15], twtemph
		; load next Tweak values
		movdqa  %%TW1, [TW + 16*0]
		movdqa  %%TW2, [TW + 16*1]
		movdqa  %%TW3, [TW + 16*2]
		movdqa  %%TW4, [TW + 16*3]
		movdqa  %%TW5, [TW + 16*4]
		movdqa  %%TW6, [TW + 16*5]
		movdqa  %%TW7, [TW + 16*6]

%endmacro


section .text

global XTS_AES_256_enc_expanded_key_sse:function
XTS_AES_256_enc_expanded_key_sse:

	sub     rsp, VARIABLE_OFFSET

	mov     [_gpr + 8*0], rbx
%ifidn __OUTPUT_FORMAT__, win64
	mov     [_gpr + 8*1], rdi
	mov     [_gpr + 8*2], rsi

	movdqa  [_xmm + 16*0], xmm6
	movdqa  [_xmm + 16*1], xmm7
	movdqa  [_xmm + 16*2], xmm8
	movdqa  [_xmm + 16*3], xmm9
	movdqa  [_xmm + 16*4], xmm10
	movdqa  [_xmm + 16*5], xmm11
	movdqa  [_xmm + 16*6], xmm12
	movdqa  [_xmm + 16*7], xmm13
	movdqa  [_xmm + 16*8], xmm14
	movdqa  [_xmm + 16*9], xmm15
%endif

	mov     ghash_poly_8b, GHASH_POLY       ; load 0x87 to ghash_poly_8b


	movdqu  xmm1, [T_val]                   ; read initial Tweak value
	pxor    xmm4, xmm4                      ; for key expansion
	encrypt_T       xmm0, xmm1, xmm2, xmm3, xmm4, ptr_key2, ptr_key1, keys


%ifidn __OUTPUT_FORMAT__, win64
	mov             ptr_plaintext, [rsp + VARIABLE_OFFSET + 8*5]            ; plaintext pointer
	mov             ptr_ciphertext, [rsp + VARIABLE_OFFSET + 8*6]           ; ciphertext pointer
%endif



	mov             target_ptr_val, N_val
	and             target_ptr_val, -16             ; target_ptr_val = target_ptr_val - (target_ptr_val mod 16)
	sub             target_ptr_val, 128             ; adjust target_ptr_val because last 4 blocks will not be stitched with Tweak calculations
	jl              _less_than_128_bytes

	add             target_ptr_val, ptr_ciphertext


	mov             tmp1, N_val
	and             tmp1, (7 << 4)
	jz              _initial_num_blocks_is_0

	cmp             tmp1, (4 << 4)
	je              _initial_num_blocks_is_4



	cmp             tmp1, (6 << 4)
	je              _initial_num_blocks_is_6

	cmp             tmp1, (5 << 4)
	je              _initial_num_blocks_is_5



	cmp             tmp1, (3 << 4)
	je              _initial_num_blocks_is_3

	cmp             tmp1, (2 << 4)
	je              _initial_num_blocks_is_2

	cmp             tmp1, (1 << 4)
	je              _initial_num_blocks_is_1

_initial_num_blocks_is_7:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 7
	add     ptr_plaintext, 16*7
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 7, 0
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5
	movdqu  [ptr_ciphertext+16*5], xmm6
	movdqu  [ptr_ciphertext+16*6], xmm7
	add     ptr_ciphertext, 16*7

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop
_initial_num_blocks_is_6:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 6
	add     ptr_plaintext, 16*6
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 6, 0
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5
	movdqu  [ptr_ciphertext+16*5], xmm6
	add     ptr_ciphertext, 16*6

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop
_initial_num_blocks_is_5:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 5
	add     ptr_plaintext, 16*5
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 5, 0
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5
	add     ptr_ciphertext, 16*5

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop
_initial_num_blocks_is_4:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 4
	add     ptr_plaintext, 16*4
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 4, 0
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	add     ptr_ciphertext, 16*4

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop


_initial_num_blocks_is_3:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 3
	add     ptr_plaintext, 16*3
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 3, 0
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	add     ptr_ciphertext, 16*3

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop
_initial_num_blocks_is_2:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 2
	add     ptr_plaintext, 16*2
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 2, 0
	; store ciphertext
	movdqu  [ptr_ciphertext], xmm1
	movdqu  [ptr_ciphertext+16], xmm2
	add     ptr_ciphertext, 16*2

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop

_initial_num_blocks_is_1:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 1
	add     ptr_plaintext, 16*1
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 1, 0
	; store ciphertext
	movdqu  [ptr_ciphertext], xmm1
	add     ptr_ciphertext, 16

	cmp     ptr_ciphertext, target_ptr_val
	je      _last_eight

	jmp     _main_loop

_initial_num_blocks_is_0:
		mov             twtempl, [TW+8*0]
		mov             twtemph, [TW+8*1]
		movdqa          xmm9, [TW+16*0]

		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*2], twtempl
		mov             [TW+8*3], twtemph
		movdqa          xmm10, [TW+16*1]

		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*4], twtempl
		mov             [TW+8*5], twtemph
		movdqa          xmm11, [TW+16*2]


		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*6], twtempl
		mov             [TW+8*7], twtemph
		movdqa          xmm12, [TW+16*3]


		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*8], twtempl
		mov             [TW+8*9], twtemph
		movdqa          xmm13, [TW+16*4]

		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*10], twtempl
		mov             [TW+8*11], twtemph
		movdqa          xmm14, [TW+16*5]

		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*12], twtempl
		mov             [TW+8*13], twtemph
		movdqa          xmm15, [TW+16*6]

		xor             ghash_poly_8b_temp, ghash_poly_8b_temp
		shl             twtempl, 1
		adc             twtemph, twtemph
		cmovc           ghash_poly_8b_temp, ghash_poly_8b
		xor             twtempl, ghash_poly_8b_temp
		mov             [TW+8*14], twtempl
		mov             [TW+8*15], twtemph
		;movdqa         xmm16, [TW+16*7]

		cmp             ptr_ciphertext, target_ptr_val
		je              _last_eight
_main_loop:
	; load plaintext
	movdqu  xmm1, [ptr_plaintext+16*0]
	movdqu  xmm2, [ptr_plaintext+16*1]
	movdqu  xmm3, [ptr_plaintext+16*2]
	movdqu  xmm4, [ptr_plaintext+16*3]
	movdqu  xmm5, [ptr_plaintext+16*4]
	movdqu  xmm6, [ptr_plaintext+16*5]
	movdqu  xmm7, [ptr_plaintext+16*6]
	movdqu  xmm8, [ptr_plaintext+16*7]

	add     ptr_plaintext, 128

	encrypt_by_eight xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, [TW+16*7], xmm0, 0

	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5
	movdqu  [ptr_ciphertext+16*5], xmm6
	movdqu  [ptr_ciphertext+16*6], xmm7
	movdqu  [ptr_ciphertext+16*7], xmm8
	add     ptr_ciphertext, 128

	cmp     ptr_ciphertext, target_ptr_val
	jne     _main_loop

_last_eight:
	; load plaintext
	movdqu  xmm1, [ptr_plaintext+16*0]
	movdqu  xmm2, [ptr_plaintext+16*1]
	movdqu  xmm3, [ptr_plaintext+16*2]
	movdqu  xmm4, [ptr_plaintext+16*3]
	movdqu  xmm5, [ptr_plaintext+16*4]
	movdqu  xmm6, [ptr_plaintext+16*5]
	movdqu  xmm7, [ptr_plaintext+16*6]
	movdqu  xmm8, [ptr_plaintext+16*7]
	encrypt_by_eight xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, [TW+16*7], xmm0, 1

	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5
	movdqu  [ptr_ciphertext+16*5], xmm6
	movdqu  [ptr_ciphertext+16*6], xmm7


	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
_steal_cipher:
	; start cipher stealing

	; generate next Tweak value
	xor     ghash_poly_8b_temp, ghash_poly_8b_temp
	shl     twtempl, 1
	adc     twtemph, twtemph
	cmovc   ghash_poly_8b_temp, ghash_poly_8b
	xor     twtempl, ghash_poly_8b_temp
	mov     [TW], twtempl
	mov     [TW + 8], twtemph

	movdqa  xmm2, xmm8

	; shift xmm8 to the left by 16-N_val bytes
	lea     twtempl, [pshufb_shf_table]
	movdqu  xmm0, [twtempl+N_val]
	pshufb  xmm8, xmm0


	movdqu  xmm3, [ptr_plaintext + 112 + N_val]      ; state register is temporarily xmm3 to eliminate a move
	movdqu  [ptr_ciphertext + 112 + N_val], xmm8

	; shift xmm3 to the right by 16-N_val bytes
	lea     twtempl, [pshufb_shf_table +16]
	sub     twtempl, N_val
	movdqu  xmm0, [twtempl]
	pxor    xmm0, [mask1]
	pshufb  xmm3, xmm0

	pblendvb        xmm3, xmm2      ;xmm0 is implicit

	; xor Tweak value
	movdqa  xmm8, [TW]
	pxor    xmm8, xmm3      ; state register is xmm8, instead of a move from xmm3 to xmm8, destination register of pxor instruction is swapped


	;encrypt last block with cipher stealing
	pxor    xmm8, [keys]                    ; ARK
	aesenc  xmm8, [keys + 16*1]             ; round 1
	aesenc  xmm8, [keys + 16*2]             ; round 2
	aesenc  xmm8, [keys + 16*3]             ; round 3
	aesenc  xmm8, [keys + 16*4]             ; round 4
	aesenc  xmm8, [keys + 16*5]             ; round 5
	aesenc  xmm8, [keys + 16*6]             ; round 6
	aesenc  xmm8, [keys + 16*7]             ; round 7
	aesenc  xmm8, [keys + 16*8]             ; round 8
	aesenc  xmm8, [keys + 16*9]             ; round 9
	aesenc  xmm8, [keys + 16*10]            ; round 9
	aesenc  xmm8, [keys + 16*11]            ; round 9
	aesenc  xmm8, [keys + 16*12]            ; round 9
	aesenc  xmm8, [keys + 16*13]            ; round 9
	aesenclast      xmm8, [keys + 16*14]    ; round 10

	; xor Tweak value
	pxor    xmm8, [TW]

_done:
	; store last ciphertext value
	movdqu  [ptr_ciphertext+16*7], xmm8

_ret_:

	mov     rbx, [_gpr + 8*0]
%ifidn __OUTPUT_FORMAT__, win64
	mov     rdi, [_gpr + 8*1]
	mov     rsi, [_gpr + 8*2]


	movdqa  xmm6, [_xmm + 16*0]
	movdqa  xmm7, [_xmm + 16*1]
	movdqa  xmm8, [_xmm + 16*2]
	movdqa  xmm9, [_xmm + 16*3]
	movdqa  xmm10, [_xmm + 16*4]
	movdqa  xmm11, [_xmm + 16*5]
	movdqa  xmm12, [_xmm + 16*6]
	movdqa  xmm13, [_xmm + 16*7]
	movdqa  xmm14, [_xmm + 16*8]
	movdqa  xmm15, [_xmm + 16*9]
%endif

	add     rsp, VARIABLE_OFFSET

	ret





_less_than_128_bytes:
	cmp N_val, 16
	jb _ret_

	mov     tmp1, N_val
	and     tmp1, (7 << 4)
	cmp     tmp1, (6 << 4)
	je      _num_blocks_is_6
	cmp     tmp1, (5 << 4)
	je      _num_blocks_is_5
	cmp     tmp1, (4 << 4)
	je      _num_blocks_is_4
	cmp     tmp1, (3 << 4)
	je      _num_blocks_is_3
	cmp     tmp1, (2 << 4)
	je      _num_blocks_is_2
	cmp     tmp1, (1 << 4)
	je      _num_blocks_is_1

_num_blocks_is_7:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 7
	sub     ptr_plaintext, 16*1
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 7, 1
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5
	movdqu  [ptr_ciphertext+16*5], xmm6

	sub     ptr_ciphertext, 16*1
	movdqa  xmm8, xmm7

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher
_num_blocks_is_6:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 6
	sub     ptr_plaintext, 16*2
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 6, 1
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4
	movdqu  [ptr_ciphertext+16*4], xmm5

	sub     ptr_ciphertext, 16*2
	movdqa  xmm8, xmm6

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher
_num_blocks_is_5:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 5
	sub     ptr_plaintext, 16*3
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 5, 1
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3
	movdqu  [ptr_ciphertext+16*3], xmm4

	sub     ptr_ciphertext, 16*3
	movdqa  xmm8, xmm5

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher
_num_blocks_is_4:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 4
	sub     ptr_plaintext, 16*4
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 4, 1
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2
	movdqu  [ptr_ciphertext+16*2], xmm3

	sub     ptr_ciphertext, 16*4
	movdqa  xmm8, xmm4

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher
_num_blocks_is_3:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 3
	sub     ptr_plaintext, 16*5
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 3, 1
	; store ciphertext
	movdqu  [ptr_ciphertext+16*0], xmm1
	movdqu  [ptr_ciphertext+16*1], xmm2

	sub     ptr_ciphertext, 16*5
	movdqa  xmm8, xmm3

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher

_num_blocks_is_2:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 2
	sub     ptr_plaintext, 16*6
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 2, 1
	; store ciphertext
	movdqu  [ptr_ciphertext], xmm1

	sub     ptr_ciphertext, 16*6
	movdqa  xmm8, xmm2

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher


_num_blocks_is_1:
	initialize xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, 1

	sub     ptr_plaintext, 16*7
	encrypt_initial xmm1, xmm2, xmm3, xmm4, xmm5, xmm6, xmm7, xmm8, xmm9, xmm10, xmm11, xmm12, xmm13, xmm14, xmm15, xmm0, 1, 1
	; store ciphertext

	sub     ptr_ciphertext, 16*7
	movdqa  xmm8, xmm1

	and     N_val, 15               ; N_val = N_val mod 16
	je      _done
	jmp     _steal_cipher

section .data
align 16

pshufb_shf_table:
; use these values for shift constants for the pshufb instruction
; different alignments result in values as shown:
;       dq 0x8887868584838281, 0x008f8e8d8c8b8a89 ; shl 15 (16-1) / shr1
;       dq 0x8988878685848382, 0x01008f8e8d8c8b8a ; shl 14 (16-3) / shr2
;       dq 0x8a89888786858483, 0x0201008f8e8d8c8b ; shl 13 (16-4) / shr3
;       dq 0x8b8a898887868584, 0x030201008f8e8d8c ; shl 12 (16-4) / shr4
;       dq 0x8c8b8a8988878685, 0x04030201008f8e8d ; shl 11 (16-5) / shr5
;       dq 0x8d8c8b8a89888786, 0x0504030201008f8e ; shl 10 (16-6) / shr6
;       dq 0x8e8d8c8b8a898887, 0x060504030201008f ; shl 9  (16-7) / shr7
;       dq 0x8f8e8d8c8b8a8988, 0x0706050403020100 ; shl 8  (16-8) / shr8
;       dq 0x008f8e8d8c8b8a89, 0x0807060504030201 ; shl 7  (16-9) / shr9
;       dq 0x01008f8e8d8c8b8a, 0x0908070605040302 ; shl 6  (16-10) / shr10
;       dq 0x0201008f8e8d8c8b, 0x0a09080706050403 ; shl 5  (16-11) / shr11
;       dq 0x030201008f8e8d8c, 0x0b0a090807060504 ; shl 4  (16-12) / shr12
;       dq 0x04030201008f8e8d, 0x0c0b0a0908070605 ; shl 3  (16-13) / shr13
;       dq 0x0504030201008f8e, 0x0d0c0b0a09080706 ; shl 2  (16-14) / shr14
;       dq 0x060504030201008f, 0x0e0d0c0b0a090807 ; shl 1  (16-15) / shr15
dq 0x8786858483828100, 0x8f8e8d8c8b8a8988
dq 0x0706050403020100, 0x000e0d0c0b0a0908

mask1:
dq 0x8080808080808080, 0x8080808080808080