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
|
; 1 "crypto/aes/aesni-sha1-masm-x86_64.S.tmp"
; 1 "<built-in>" 1
; 1 "<built-in>" 3
; 340 "<built-in>" 3
; 1 "<command line>" 1
; 1 "<built-in>" 2
; 1 "crypto/aes/aesni-sha1-masm-x86_64.S.tmp" 2
OPTION DOTNAME
; 1 "./crypto/x86_arch.h" 1
; 16 "./crypto/x86_arch.h"
; 40 "./crypto/x86_arch.h"
; 3 "crypto/aes/aesni-sha1-masm-x86_64.S.tmp" 2
.text$ SEGMENT ALIGN(64) 'CODE'
EXTERN OPENSSL_ia32cap_P:NEAR
PUBLIC aesni_cbc_sha1_enc
ALIGN 16
aesni_cbc_sha1_enc PROC PUBLIC
mov r10d,DWORD PTR[((OPENSSL_ia32cap_P+0))]
mov r11d,DWORD PTR[((OPENSSL_ia32cap_P+4))]
jmp aesni_cbc_sha1_enc_ssse3
DB 0F3h,0C3h ;repret
aesni_cbc_sha1_enc ENDP
ALIGN 16
aesni_cbc_sha1_enc_ssse3 PROC PRIVATE
mov QWORD PTR[8+rsp],rdi ;WIN64 prologue
mov QWORD PTR[16+rsp],rsi
mov rax,rsp
$L$SEH_begin_aesni_cbc_sha1_enc_ssse3::
mov rdi,rcx
mov rsi,rdx
mov rdx,r8
mov rcx,r9
mov r8,QWORD PTR[40+rsp]
mov r9,QWORD PTR[48+rsp]
mov r10,QWORD PTR[56+rsp]
push rbx
push rbp
push r12
push r13
push r14
push r15
lea rsp,QWORD PTR[((-264))+rsp]
movaps XMMWORD PTR[(96+0)+rsp],xmm6
movaps XMMWORD PTR[(96+16)+rsp],xmm7
movaps XMMWORD PTR[(96+32)+rsp],xmm8
movaps XMMWORD PTR[(96+48)+rsp],xmm9
movaps XMMWORD PTR[(96+64)+rsp],xmm10
movaps XMMWORD PTR[(96+80)+rsp],xmm11
movaps XMMWORD PTR[(96+96)+rsp],xmm12
movaps XMMWORD PTR[(96+112)+rsp],xmm13
movaps XMMWORD PTR[(96+128)+rsp],xmm14
movaps XMMWORD PTR[(96+144)+rsp],xmm15
$L$prologue_ssse3::
mov r12,rdi
mov r13,rsi
mov r14,rdx
mov r15,rcx
movdqu xmm11,XMMWORD PTR[r8]
mov QWORD PTR[88+rsp],r8
shl r14,6
sub r13,r12
mov r8d,DWORD PTR[240+r15]
add r14,r10
lea r11,QWORD PTR[K_XX_XX]
mov eax,DWORD PTR[r9]
mov ebx,DWORD PTR[4+r9]
mov ecx,DWORD PTR[8+r9]
mov edx,DWORD PTR[12+r9]
mov esi,ebx
mov ebp,DWORD PTR[16+r9]
movdqa xmm6,XMMWORD PTR[64+r11]
movdqa xmm9,XMMWORD PTR[r11]
movdqu xmm0,XMMWORD PTR[r10]
movdqu xmm1,XMMWORD PTR[16+r10]
movdqu xmm2,XMMWORD PTR[32+r10]
movdqu xmm3,XMMWORD PTR[48+r10]
DB 102,15,56,0,198
add r10,64
DB 102,15,56,0,206
DB 102,15,56,0,214
DB 102,15,56,0,222
paddd xmm0,xmm9
paddd xmm1,xmm9
paddd xmm2,xmm9
movdqa XMMWORD PTR[rsp],xmm0
psubd xmm0,xmm9
movdqa XMMWORD PTR[16+rsp],xmm1
psubd xmm1,xmm9
movdqa XMMWORD PTR[32+rsp],xmm2
psubd xmm2,xmm9
movups xmm13,XMMWORD PTR[r15]
movups xmm14,XMMWORD PTR[16+r15]
jmp $L$oop_ssse3
ALIGN 16
$L$oop_ssse3::
movdqa xmm4,xmm1
add ebp,DWORD PTR[rsp]
movups xmm12,XMMWORD PTR[r12]
xorps xmm12,xmm13
xorps xmm11,xmm12
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[32+r15]
xor ecx,edx
movdqa xmm8,xmm3
DB 102,15,58,15,224,8
mov edi,eax
rol eax,5
paddd xmm9,xmm3
and esi,ecx
xor ecx,edx
psrldq xmm8,4
xor esi,edx
add ebp,eax
pxor xmm4,xmm0
ror ebx,2
add ebp,esi
pxor xmm8,xmm2
add edx,DWORD PTR[4+rsp]
xor ebx,ecx
mov esi,ebp
rol ebp,5
pxor xmm4,xmm8
and edi,ebx
xor ebx,ecx
movdqa XMMWORD PTR[48+rsp],xmm9
xor edi,ecx
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[48+r15]
add edx,ebp
movdqa xmm10,xmm4
movdqa xmm8,xmm4
ror eax,7
add edx,edi
add ecx,DWORD PTR[8+rsp]
xor eax,ebx
pslldq xmm10,12
paddd xmm4,xmm4
mov edi,edx
rol edx,5
and esi,eax
xor eax,ebx
psrld xmm8,31
xor esi,ebx
add ecx,edx
movdqa xmm9,xmm10
ror ebp,7
add ecx,esi
psrld xmm10,30
por xmm4,xmm8
add ebx,DWORD PTR[12+rsp]
xor ebp,eax
mov esi,ecx
rol ecx,5
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[64+r15]
pslld xmm9,2
pxor xmm4,xmm10
and edi,ebp
xor ebp,eax
movdqa xmm10,XMMWORD PTR[r11]
xor edi,eax
add ebx,ecx
pxor xmm4,xmm9
ror edx,7
add ebx,edi
movdqa xmm5,xmm2
add eax,DWORD PTR[16+rsp]
xor edx,ebp
movdqa xmm9,xmm4
DB 102,15,58,15,233,8
mov edi,ebx
rol ebx,5
paddd xmm10,xmm4
and esi,edx
xor edx,ebp
psrldq xmm9,4
xor esi,ebp
add eax,ebx
pxor xmm5,xmm1
ror ecx,7
add eax,esi
pxor xmm9,xmm3
add ebp,DWORD PTR[20+rsp]
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[80+r15]
xor ecx,edx
mov esi,eax
rol eax,5
pxor xmm5,xmm9
and edi,ecx
xor ecx,edx
movdqa XMMWORD PTR[rsp],xmm10
xor edi,edx
add ebp,eax
movdqa xmm8,xmm5
movdqa xmm9,xmm5
ror ebx,7
add ebp,edi
add edx,DWORD PTR[24+rsp]
xor ebx,ecx
pslldq xmm8,12
paddd xmm5,xmm5
mov edi,ebp
rol ebp,5
and esi,ebx
xor ebx,ecx
psrld xmm9,31
xor esi,ecx
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[96+r15]
add edx,ebp
movdqa xmm10,xmm8
ror eax,7
add edx,esi
psrld xmm8,30
por xmm5,xmm9
add ecx,DWORD PTR[28+rsp]
xor eax,ebx
mov esi,edx
rol edx,5
pslld xmm10,2
pxor xmm5,xmm8
and edi,eax
xor eax,ebx
movdqa xmm8,XMMWORD PTR[16+r11]
xor edi,ebx
add ecx,edx
pxor xmm5,xmm10
ror ebp,7
add ecx,edi
movdqa xmm6,xmm3
add ebx,DWORD PTR[32+rsp]
xor ebp,eax
movdqa xmm10,xmm5
DB 102,15,58,15,242,8
mov edi,ecx
rol ecx,5
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[112+r15]
paddd xmm8,xmm5
and esi,ebp
xor ebp,eax
psrldq xmm10,4
xor esi,eax
add ebx,ecx
pxor xmm6,xmm2
ror edx,7
add ebx,esi
pxor xmm10,xmm4
add eax,DWORD PTR[36+rsp]
xor edx,ebp
mov esi,ebx
rol ebx,5
pxor xmm6,xmm10
and edi,edx
xor edx,ebp
movdqa XMMWORD PTR[16+rsp],xmm8
xor edi,ebp
add eax,ebx
movdqa xmm9,xmm6
movdqa xmm10,xmm6
ror ecx,7
add eax,edi
add ebp,DWORD PTR[40+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[128+r15]
xor ecx,edx
pslldq xmm9,12
paddd xmm6,xmm6
mov edi,eax
rol eax,5
and esi,ecx
xor ecx,edx
psrld xmm10,31
xor esi,edx
add ebp,eax
movdqa xmm8,xmm9
ror ebx,7
add ebp,esi
psrld xmm9,30
por xmm6,xmm10
add edx,DWORD PTR[44+rsp]
xor ebx,ecx
mov esi,ebp
rol ebp,5
pslld xmm8,2
pxor xmm6,xmm9
and edi,ebx
xor ebx,ecx
movdqa xmm9,XMMWORD PTR[16+r11]
xor edi,ecx
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[144+r15]
add edx,ebp
pxor xmm6,xmm8
ror eax,7
add edx,edi
movdqa xmm7,xmm4
add ecx,DWORD PTR[48+rsp]
xor eax,ebx
movdqa xmm8,xmm6
DB 102,15,58,15,251,8
mov edi,edx
rol edx,5
paddd xmm9,xmm6
and esi,eax
xor eax,ebx
psrldq xmm8,4
xor esi,ebx
add ecx,edx
pxor xmm7,xmm3
ror ebp,7
add ecx,esi
pxor xmm8,xmm5
add ebx,DWORD PTR[52+rsp]
xor ebp,eax
mov esi,ecx
rol ecx,5
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[160+r15]
pxor xmm7,xmm8
and edi,ebp
xor ebp,eax
movdqa XMMWORD PTR[32+rsp],xmm9
xor edi,eax
add ebx,ecx
movdqa xmm10,xmm7
movdqa xmm8,xmm7
ror edx,7
add ebx,edi
add eax,DWORD PTR[56+rsp]
xor edx,ebp
pslldq xmm10,12
paddd xmm7,xmm7
mov edi,ebx
rol ebx,5
and esi,edx
xor edx,ebp
psrld xmm8,31
xor esi,ebp
add eax,ebx
movdqa xmm9,xmm10
ror ecx,7
add eax,esi
psrld xmm10,30
por xmm7,xmm8
add ebp,DWORD PTR[60+rsp]
cmp r8d,11
jb $L$aesenclast1
movups xmm14,XMMWORD PTR[176+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[192+r15]
aesenc xmm11,xmm14
je $L$aesenclast1
movups xmm14,XMMWORD PTR[208+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[224+r15]
aesenc xmm11,xmm14
$L$aesenclast1::
aesenclast xmm11,xmm15
movups xmm14,XMMWORD PTR[16+r15]
xor ecx,edx
mov esi,eax
rol eax,5
pslld xmm9,2
pxor xmm7,xmm10
and edi,ecx
xor ecx,edx
movdqa xmm10,XMMWORD PTR[16+r11]
xor edi,edx
add ebp,eax
pxor xmm7,xmm9
ror ebx,7
add ebp,edi
movdqa xmm9,xmm7
add edx,DWORD PTR[rsp]
pxor xmm0,xmm4
DB 102,68,15,58,15,206,8
xor ebx,ecx
mov edi,ebp
rol ebp,5
pxor xmm0,xmm1
and esi,ebx
xor ebx,ecx
movdqa xmm8,xmm10
paddd xmm10,xmm7
xor esi,ecx
movups xmm12,XMMWORD PTR[16+r12]
xorps xmm12,xmm13
movups XMMWORD PTR[r12*1+r13],xmm11
xorps xmm11,xmm12
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[32+r15]
add edx,ebp
pxor xmm0,xmm9
ror eax,7
add edx,esi
add ecx,DWORD PTR[4+rsp]
xor eax,ebx
movdqa xmm9,xmm0
movdqa XMMWORD PTR[48+rsp],xmm10
mov esi,edx
rol edx,5
and edi,eax
xor eax,ebx
pslld xmm0,2
xor edi,ebx
add ecx,edx
psrld xmm9,30
ror ebp,7
add ecx,edi
add ebx,DWORD PTR[8+rsp]
xor ebp,eax
mov edi,ecx
rol ecx,5
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[48+r15]
por xmm0,xmm9
and esi,ebp
xor ebp,eax
movdqa xmm10,xmm0
xor esi,eax
add ebx,ecx
ror edx,7
add ebx,esi
add eax,DWORD PTR[12+rsp]
xor edx,ebp
mov esi,ebx
rol ebx,5
and edi,edx
xor edx,ebp
xor edi,ebp
add eax,ebx
ror ecx,7
add eax,edi
add ebp,DWORD PTR[16+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[64+r15]
pxor xmm1,xmm5
DB 102,68,15,58,15,215,8
xor esi,edx
mov edi,eax
rol eax,5
pxor xmm1,xmm2
xor esi,ecx
add ebp,eax
movdqa xmm9,xmm8
paddd xmm8,xmm0
ror ebx,7
add ebp,esi
pxor xmm1,xmm10
add edx,DWORD PTR[20+rsp]
xor edi,ecx
mov esi,ebp
rol ebp,5
movdqa xmm10,xmm1
movdqa XMMWORD PTR[rsp],xmm8
xor edi,ebx
add edx,ebp
ror eax,7
add edx,edi
pslld xmm1,2
add ecx,DWORD PTR[24+rsp]
xor esi,ebx
psrld xmm10,30
mov edi,edx
rol edx,5
xor esi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[80+r15]
add ecx,edx
ror ebp,7
add ecx,esi
por xmm1,xmm10
add ebx,DWORD PTR[28+rsp]
xor edi,eax
movdqa xmm8,xmm1
mov esi,ecx
rol ecx,5
xor edi,ebp
add ebx,ecx
ror edx,7
add ebx,edi
add eax,DWORD PTR[32+rsp]
pxor xmm2,xmm6
DB 102,68,15,58,15,192,8
xor esi,ebp
mov edi,ebx
rol ebx,5
pxor xmm2,xmm3
xor esi,edx
add eax,ebx
movdqa xmm10,XMMWORD PTR[32+r11]
paddd xmm9,xmm1
ror ecx,7
add eax,esi
pxor xmm2,xmm8
add ebp,DWORD PTR[36+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[96+r15]
xor edi,edx
mov esi,eax
rol eax,5
movdqa xmm8,xmm2
movdqa XMMWORD PTR[16+rsp],xmm9
xor edi,ecx
add ebp,eax
ror ebx,7
add ebp,edi
pslld xmm2,2
add edx,DWORD PTR[40+rsp]
xor esi,ecx
psrld xmm8,30
mov edi,ebp
rol ebp,5
xor esi,ebx
add edx,ebp
ror eax,7
add edx,esi
por xmm2,xmm8
add ecx,DWORD PTR[44+rsp]
xor edi,ebx
movdqa xmm9,xmm2
mov esi,edx
rol edx,5
xor edi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[112+r15]
add ecx,edx
ror ebp,7
add ecx,edi
add ebx,DWORD PTR[48+rsp]
pxor xmm3,xmm7
DB 102,68,15,58,15,201,8
xor esi,eax
mov edi,ecx
rol ecx,5
pxor xmm3,xmm4
xor esi,ebp
add ebx,ecx
movdqa xmm8,xmm10
paddd xmm10,xmm2
ror edx,7
add ebx,esi
pxor xmm3,xmm9
add eax,DWORD PTR[52+rsp]
xor edi,ebp
mov esi,ebx
rol ebx,5
movdqa xmm9,xmm3
movdqa XMMWORD PTR[32+rsp],xmm10
xor edi,edx
add eax,ebx
ror ecx,7
add eax,edi
pslld xmm3,2
add ebp,DWORD PTR[56+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[128+r15]
xor esi,edx
psrld xmm9,30
mov edi,eax
rol eax,5
xor esi,ecx
add ebp,eax
ror ebx,7
add ebp,esi
por xmm3,xmm9
add edx,DWORD PTR[60+rsp]
xor edi,ecx
movdqa xmm10,xmm3
mov esi,ebp
rol ebp,5
xor edi,ebx
add edx,ebp
ror eax,7
add edx,edi
add ecx,DWORD PTR[rsp]
pxor xmm4,xmm0
DB 102,68,15,58,15,210,8
xor esi,ebx
mov edi,edx
rol edx,5
pxor xmm4,xmm5
xor esi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[144+r15]
add ecx,edx
movdqa xmm9,xmm8
paddd xmm8,xmm3
ror ebp,7
add ecx,esi
pxor xmm4,xmm10
add ebx,DWORD PTR[4+rsp]
xor edi,eax
mov esi,ecx
rol ecx,5
movdqa xmm10,xmm4
movdqa XMMWORD PTR[48+rsp],xmm8
xor edi,ebp
add ebx,ecx
ror edx,7
add ebx,edi
pslld xmm4,2
add eax,DWORD PTR[8+rsp]
xor esi,ebp
psrld xmm10,30
mov edi,ebx
rol ebx,5
xor esi,edx
add eax,ebx
ror ecx,7
add eax,esi
por xmm4,xmm10
add ebp,DWORD PTR[12+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[160+r15]
xor edi,edx
movdqa xmm8,xmm4
mov esi,eax
rol eax,5
xor edi,ecx
add ebp,eax
ror ebx,7
add ebp,edi
add edx,DWORD PTR[16+rsp]
pxor xmm5,xmm1
DB 102,68,15,58,15,195,8
xor esi,ecx
mov edi,ebp
rol ebp,5
pxor xmm5,xmm6
xor esi,ebx
add edx,ebp
movdqa xmm10,xmm9
paddd xmm9,xmm4
ror eax,7
add edx,esi
pxor xmm5,xmm8
add ecx,DWORD PTR[20+rsp]
xor edi,ebx
mov esi,edx
rol edx,5
movdqa xmm8,xmm5
movdqa XMMWORD PTR[rsp],xmm9
xor edi,eax
cmp r8d,11
jb $L$aesenclast2
movups xmm14,XMMWORD PTR[176+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[192+r15]
aesenc xmm11,xmm14
je $L$aesenclast2
movups xmm14,XMMWORD PTR[208+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[224+r15]
aesenc xmm11,xmm14
$L$aesenclast2::
aesenclast xmm11,xmm15
movups xmm14,XMMWORD PTR[16+r15]
add ecx,edx
ror ebp,7
add ecx,edi
pslld xmm5,2
add ebx,DWORD PTR[24+rsp]
xor esi,eax
psrld xmm8,30
mov edi,ecx
rol ecx,5
xor esi,ebp
add ebx,ecx
ror edx,7
add ebx,esi
por xmm5,xmm8
add eax,DWORD PTR[28+rsp]
xor edi,ebp
movdqa xmm9,xmm5
mov esi,ebx
rol ebx,5
xor edi,edx
add eax,ebx
ror ecx,7
add eax,edi
mov edi,ecx
movups xmm12,XMMWORD PTR[32+r12]
xorps xmm12,xmm13
movups XMMWORD PTR[16+r12*1+r13],xmm11
xorps xmm11,xmm12
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[32+r15]
pxor xmm6,xmm2
DB 102,68,15,58,15,204,8
xor ecx,edx
add ebp,DWORD PTR[32+rsp]
and edi,edx
pxor xmm6,xmm7
and esi,ecx
ror ebx,7
movdqa xmm8,xmm10
paddd xmm10,xmm5
add ebp,edi
mov edi,eax
pxor xmm6,xmm9
rol eax,5
add ebp,esi
xor ecx,edx
add ebp,eax
movdqa xmm9,xmm6
movdqa XMMWORD PTR[16+rsp],xmm10
mov esi,ebx
xor ebx,ecx
add edx,DWORD PTR[36+rsp]
and esi,ecx
pslld xmm6,2
and edi,ebx
ror eax,7
psrld xmm9,30
add edx,esi
mov esi,ebp
rol ebp,5
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[48+r15]
add edx,edi
xor ebx,ecx
add edx,ebp
por xmm6,xmm9
mov edi,eax
xor eax,ebx
movdqa xmm10,xmm6
add ecx,DWORD PTR[40+rsp]
and edi,ebx
and esi,eax
ror ebp,7
add ecx,edi
mov edi,edx
rol edx,5
add ecx,esi
xor eax,ebx
add ecx,edx
mov esi,ebp
xor ebp,eax
add ebx,DWORD PTR[44+rsp]
and esi,eax
and edi,ebp
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[64+r15]
ror edx,7
add ebx,esi
mov esi,ecx
rol ecx,5
add ebx,edi
xor ebp,eax
add ebx,ecx
mov edi,edx
pxor xmm7,xmm3
DB 102,68,15,58,15,213,8
xor edx,ebp
add eax,DWORD PTR[48+rsp]
and edi,ebp
pxor xmm7,xmm0
and esi,edx
ror ecx,7
movdqa xmm9,XMMWORD PTR[48+r11]
paddd xmm8,xmm6
add eax,edi
mov edi,ebx
pxor xmm7,xmm10
rol ebx,5
add eax,esi
xor edx,ebp
add eax,ebx
movdqa xmm10,xmm7
movdqa XMMWORD PTR[32+rsp],xmm8
mov esi,ecx
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[80+r15]
xor ecx,edx
add ebp,DWORD PTR[52+rsp]
and esi,edx
pslld xmm7,2
and edi,ecx
ror ebx,7
psrld xmm10,30
add ebp,esi
mov esi,eax
rol eax,5
add ebp,edi
xor ecx,edx
add ebp,eax
por xmm7,xmm10
mov edi,ebx
xor ebx,ecx
movdqa xmm8,xmm7
add edx,DWORD PTR[56+rsp]
and edi,ecx
and esi,ebx
ror eax,7
add edx,edi
mov edi,ebp
rol ebp,5
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[96+r15]
add edx,esi
xor ebx,ecx
add edx,ebp
mov esi,eax
xor eax,ebx
add ecx,DWORD PTR[60+rsp]
and esi,ebx
and edi,eax
ror ebp,7
add ecx,esi
mov esi,edx
rol edx,5
add ecx,edi
xor eax,ebx
add ecx,edx
mov edi,ebp
pxor xmm0,xmm4
DB 102,68,15,58,15,198,8
xor ebp,eax
add ebx,DWORD PTR[rsp]
and edi,eax
pxor xmm0,xmm1
and esi,ebp
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[112+r15]
ror edx,7
movdqa xmm10,xmm9
paddd xmm9,xmm7
add ebx,edi
mov edi,ecx
pxor xmm0,xmm8
rol ecx,5
add ebx,esi
xor ebp,eax
add ebx,ecx
movdqa xmm8,xmm0
movdqa XMMWORD PTR[48+rsp],xmm9
mov esi,edx
xor edx,ebp
add eax,DWORD PTR[4+rsp]
and esi,ebp
pslld xmm0,2
and edi,edx
ror ecx,7
psrld xmm8,30
add eax,esi
mov esi,ebx
rol ebx,5
add eax,edi
xor edx,ebp
add eax,ebx
por xmm0,xmm8
mov edi,ecx
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[128+r15]
xor ecx,edx
movdqa xmm9,xmm0
add ebp,DWORD PTR[8+rsp]
and edi,edx
and esi,ecx
ror ebx,7
add ebp,edi
mov edi,eax
rol eax,5
add ebp,esi
xor ecx,edx
add ebp,eax
mov esi,ebx
xor ebx,ecx
add edx,DWORD PTR[12+rsp]
and esi,ecx
and edi,ebx
ror eax,7
add edx,esi
mov esi,ebp
rol ebp,5
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[144+r15]
add edx,edi
xor ebx,ecx
add edx,ebp
mov edi,eax
pxor xmm1,xmm5
DB 102,68,15,58,15,207,8
xor eax,ebx
add ecx,DWORD PTR[16+rsp]
and edi,ebx
pxor xmm1,xmm2
and esi,eax
ror ebp,7
movdqa xmm8,xmm10
paddd xmm10,xmm0
add ecx,edi
mov edi,edx
pxor xmm1,xmm9
rol edx,5
add ecx,esi
xor eax,ebx
add ecx,edx
movdqa xmm9,xmm1
movdqa XMMWORD PTR[rsp],xmm10
mov esi,ebp
xor ebp,eax
add ebx,DWORD PTR[20+rsp]
and esi,eax
pslld xmm1,2
and edi,ebp
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[160+r15]
ror edx,7
psrld xmm9,30
add ebx,esi
mov esi,ecx
rol ecx,5
add ebx,edi
xor ebp,eax
add ebx,ecx
por xmm1,xmm9
mov edi,edx
xor edx,ebp
movdqa xmm10,xmm1
add eax,DWORD PTR[24+rsp]
and edi,ebp
and esi,edx
ror ecx,7
add eax,edi
mov edi,ebx
rol ebx,5
add eax,esi
xor edx,ebp
add eax,ebx
mov esi,ecx
cmp r8d,11
jb $L$aesenclast3
movups xmm14,XMMWORD PTR[176+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[192+r15]
aesenc xmm11,xmm14
je $L$aesenclast3
movups xmm14,XMMWORD PTR[208+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[224+r15]
aesenc xmm11,xmm14
$L$aesenclast3::
aesenclast xmm11,xmm15
movups xmm14,XMMWORD PTR[16+r15]
xor ecx,edx
add ebp,DWORD PTR[28+rsp]
and esi,edx
and edi,ecx
ror ebx,7
add ebp,esi
mov esi,eax
rol eax,5
add ebp,edi
xor ecx,edx
add ebp,eax
mov edi,ebx
pxor xmm2,xmm6
DB 102,68,15,58,15,208,8
xor ebx,ecx
add edx,DWORD PTR[32+rsp]
and edi,ecx
pxor xmm2,xmm3
and esi,ebx
ror eax,7
movdqa xmm9,xmm8
paddd xmm8,xmm1
add edx,edi
mov edi,ebp
pxor xmm2,xmm10
rol ebp,5
movups xmm12,XMMWORD PTR[48+r12]
xorps xmm12,xmm13
movups XMMWORD PTR[32+r12*1+r13],xmm11
xorps xmm11,xmm12
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[32+r15]
add edx,esi
xor ebx,ecx
add edx,ebp
movdqa xmm10,xmm2
movdqa XMMWORD PTR[16+rsp],xmm8
mov esi,eax
xor eax,ebx
add ecx,DWORD PTR[36+rsp]
and esi,ebx
pslld xmm2,2
and edi,eax
ror ebp,7
psrld xmm10,30
add ecx,esi
mov esi,edx
rol edx,5
add ecx,edi
xor eax,ebx
add ecx,edx
por xmm2,xmm10
mov edi,ebp
xor ebp,eax
movdqa xmm8,xmm2
add ebx,DWORD PTR[40+rsp]
and edi,eax
and esi,ebp
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[48+r15]
ror edx,7
add ebx,edi
mov edi,ecx
rol ecx,5
add ebx,esi
xor ebp,eax
add ebx,ecx
mov esi,edx
xor edx,ebp
add eax,DWORD PTR[44+rsp]
and esi,ebp
and edi,edx
ror ecx,7
add eax,esi
mov esi,ebx
rol ebx,5
add eax,edi
xor edx,ebp
add eax,ebx
add ebp,DWORD PTR[48+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[64+r15]
pxor xmm3,xmm7
DB 102,68,15,58,15,193,8
xor esi,edx
mov edi,eax
rol eax,5
pxor xmm3,xmm4
xor esi,ecx
add ebp,eax
movdqa xmm10,xmm9
paddd xmm9,xmm2
ror ebx,7
add ebp,esi
pxor xmm3,xmm8
add edx,DWORD PTR[52+rsp]
xor edi,ecx
mov esi,ebp
rol ebp,5
movdqa xmm8,xmm3
movdqa XMMWORD PTR[32+rsp],xmm9
xor edi,ebx
add edx,ebp
ror eax,7
add edx,edi
pslld xmm3,2
add ecx,DWORD PTR[56+rsp]
xor esi,ebx
psrld xmm8,30
mov edi,edx
rol edx,5
xor esi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[80+r15]
add ecx,edx
ror ebp,7
add ecx,esi
por xmm3,xmm8
add ebx,DWORD PTR[60+rsp]
xor edi,eax
mov esi,ecx
rol ecx,5
xor edi,ebp
add ebx,ecx
ror edx,7
add ebx,edi
add eax,DWORD PTR[rsp]
paddd xmm10,xmm3
xor esi,ebp
mov edi,ebx
rol ebx,5
xor esi,edx
movdqa XMMWORD PTR[48+rsp],xmm10
add eax,ebx
ror ecx,7
add eax,esi
add ebp,DWORD PTR[4+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[96+r15]
xor edi,edx
mov esi,eax
rol eax,5
xor edi,ecx
add ebp,eax
ror ebx,7
add ebp,edi
add edx,DWORD PTR[8+rsp]
xor esi,ecx
mov edi,ebp
rol ebp,5
xor esi,ebx
add edx,ebp
ror eax,7
add edx,esi
add ecx,DWORD PTR[12+rsp]
xor edi,ebx
mov esi,edx
rol edx,5
xor edi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[112+r15]
add ecx,edx
ror ebp,7
add ecx,edi
cmp r10,r14
je $L$done_ssse3
movdqa xmm6,XMMWORD PTR[64+r11]
movdqa xmm9,XMMWORD PTR[r11]
movdqu xmm0,XMMWORD PTR[r10]
movdqu xmm1,XMMWORD PTR[16+r10]
movdqu xmm2,XMMWORD PTR[32+r10]
movdqu xmm3,XMMWORD PTR[48+r10]
DB 102,15,56,0,198
add r10,64
add ebx,DWORD PTR[16+rsp]
xor esi,eax
DB 102,15,56,0,206
mov edi,ecx
rol ecx,5
paddd xmm0,xmm9
xor esi,ebp
add ebx,ecx
ror edx,7
add ebx,esi
movdqa XMMWORD PTR[rsp],xmm0
add eax,DWORD PTR[20+rsp]
xor edi,ebp
psubd xmm0,xmm9
mov esi,ebx
rol ebx,5
xor edi,edx
add eax,ebx
ror ecx,7
add eax,edi
add ebp,DWORD PTR[24+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[128+r15]
xor esi,edx
mov edi,eax
rol eax,5
xor esi,ecx
add ebp,eax
ror ebx,7
add ebp,esi
add edx,DWORD PTR[28+rsp]
xor edi,ecx
mov esi,ebp
rol ebp,5
xor edi,ebx
add edx,ebp
ror eax,7
add edx,edi
add ecx,DWORD PTR[32+rsp]
xor esi,ebx
DB 102,15,56,0,214
mov edi,edx
rol edx,5
paddd xmm1,xmm9
xor esi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[144+r15]
add ecx,edx
ror ebp,7
add ecx,esi
movdqa XMMWORD PTR[16+rsp],xmm1
add ebx,DWORD PTR[36+rsp]
xor edi,eax
psubd xmm1,xmm9
mov esi,ecx
rol ecx,5
xor edi,ebp
add ebx,ecx
ror edx,7
add ebx,edi
add eax,DWORD PTR[40+rsp]
xor esi,ebp
mov edi,ebx
rol ebx,5
xor esi,edx
add eax,ebx
ror ecx,7
add eax,esi
add ebp,DWORD PTR[44+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[160+r15]
xor edi,edx
mov esi,eax
rol eax,5
xor edi,ecx
add ebp,eax
ror ebx,7
add ebp,edi
add edx,DWORD PTR[48+rsp]
xor esi,ecx
DB 102,15,56,0,222
mov edi,ebp
rol ebp,5
paddd xmm2,xmm9
xor esi,ebx
add edx,ebp
ror eax,7
add edx,esi
movdqa XMMWORD PTR[32+rsp],xmm2
add ecx,DWORD PTR[52+rsp]
xor edi,ebx
psubd xmm2,xmm9
mov esi,edx
rol edx,5
xor edi,eax
cmp r8d,11
jb $L$aesenclast4
movups xmm14,XMMWORD PTR[176+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[192+r15]
aesenc xmm11,xmm14
je $L$aesenclast4
movups xmm14,XMMWORD PTR[208+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[224+r15]
aesenc xmm11,xmm14
$L$aesenclast4::
aesenclast xmm11,xmm15
movups xmm14,XMMWORD PTR[16+r15]
add ecx,edx
ror ebp,7
add ecx,edi
add ebx,DWORD PTR[56+rsp]
xor esi,eax
mov edi,ecx
rol ecx,5
xor esi,ebp
add ebx,ecx
ror edx,7
add ebx,esi
add eax,DWORD PTR[60+rsp]
xor edi,ebp
mov esi,ebx
rol ebx,5
xor edi,edx
add eax,ebx
ror ecx,7
add eax,edi
movups XMMWORD PTR[48+r12*1+r13],xmm11
lea r12,QWORD PTR[64+r12]
add eax,DWORD PTR[r9]
add esi,DWORD PTR[4+r9]
add ecx,DWORD PTR[8+r9]
add edx,DWORD PTR[12+r9]
mov DWORD PTR[r9],eax
add ebp,DWORD PTR[16+r9]
mov DWORD PTR[4+r9],esi
mov ebx,esi
mov DWORD PTR[8+r9],ecx
mov DWORD PTR[12+r9],edx
mov DWORD PTR[16+r9],ebp
jmp $L$oop_ssse3
ALIGN 16
$L$done_ssse3::
add ebx,DWORD PTR[16+rsp]
xor esi,eax
mov edi,ecx
rol ecx,5
xor esi,ebp
add ebx,ecx
ror edx,7
add ebx,esi
add eax,DWORD PTR[20+rsp]
xor edi,ebp
mov esi,ebx
rol ebx,5
xor edi,edx
add eax,ebx
ror ecx,7
add eax,edi
add ebp,DWORD PTR[24+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[128+r15]
xor esi,edx
mov edi,eax
rol eax,5
xor esi,ecx
add ebp,eax
ror ebx,7
add ebp,esi
add edx,DWORD PTR[28+rsp]
xor edi,ecx
mov esi,ebp
rol ebp,5
xor edi,ebx
add edx,ebp
ror eax,7
add edx,edi
add ecx,DWORD PTR[32+rsp]
xor esi,ebx
mov edi,edx
rol edx,5
xor esi,eax
aesenc xmm11,xmm15
movups xmm14,XMMWORD PTR[144+r15]
add ecx,edx
ror ebp,7
add ecx,esi
add ebx,DWORD PTR[36+rsp]
xor edi,eax
mov esi,ecx
rol ecx,5
xor edi,ebp
add ebx,ecx
ror edx,7
add ebx,edi
add eax,DWORD PTR[40+rsp]
xor esi,ebp
mov edi,ebx
rol ebx,5
xor esi,edx
add eax,ebx
ror ecx,7
add eax,esi
add ebp,DWORD PTR[44+rsp]
aesenc xmm11,xmm14
movups xmm15,XMMWORD PTR[160+r15]
xor edi,edx
mov esi,eax
rol eax,5
xor edi,ecx
add ebp,eax
ror ebx,7
add ebp,edi
add edx,DWORD PTR[48+rsp]
xor esi,ecx
mov edi,ebp
rol ebp,5
xor esi,ebx
add edx,ebp
ror eax,7
add edx,esi
add ecx,DWORD PTR[52+rsp]
xor edi,ebx
mov esi,edx
rol edx,5
xor edi,eax
cmp r8d,11
jb $L$aesenclast5
movups xmm14,XMMWORD PTR[176+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[192+r15]
aesenc xmm11,xmm14
je $L$aesenclast5
movups xmm14,XMMWORD PTR[208+r15]
aesenc xmm11,xmm15
movups xmm15,XMMWORD PTR[224+r15]
aesenc xmm11,xmm14
$L$aesenclast5::
aesenclast xmm11,xmm15
movups xmm14,XMMWORD PTR[16+r15]
add ecx,edx
ror ebp,7
add ecx,edi
add ebx,DWORD PTR[56+rsp]
xor esi,eax
mov edi,ecx
rol ecx,5
xor esi,ebp
add ebx,ecx
ror edx,7
add ebx,esi
add eax,DWORD PTR[60+rsp]
xor edi,ebp
mov esi,ebx
rol ebx,5
xor edi,edx
add eax,ebx
ror ecx,7
add eax,edi
movups XMMWORD PTR[48+r12*1+r13],xmm11
mov r8,QWORD PTR[88+rsp]
add eax,DWORD PTR[r9]
add esi,DWORD PTR[4+r9]
add ecx,DWORD PTR[8+r9]
mov DWORD PTR[r9],eax
add edx,DWORD PTR[12+r9]
mov DWORD PTR[4+r9],esi
add ebp,DWORD PTR[16+r9]
mov DWORD PTR[8+r9],ecx
mov DWORD PTR[12+r9],edx
mov DWORD PTR[16+r9],ebp
movups XMMWORD PTR[r8],xmm11
movaps xmm6,XMMWORD PTR[((96+0))+rsp]
movaps xmm7,XMMWORD PTR[((96+16))+rsp]
movaps xmm8,XMMWORD PTR[((96+32))+rsp]
movaps xmm9,XMMWORD PTR[((96+48))+rsp]
movaps xmm10,XMMWORD PTR[((96+64))+rsp]
movaps xmm11,XMMWORD PTR[((96+80))+rsp]
movaps xmm12,XMMWORD PTR[((96+96))+rsp]
movaps xmm13,XMMWORD PTR[((96+112))+rsp]
movaps xmm14,XMMWORD PTR[((96+128))+rsp]
movaps xmm15,XMMWORD PTR[((96+144))+rsp]
lea rsi,QWORD PTR[264+rsp]
mov r15,QWORD PTR[rsi]
mov r14,QWORD PTR[8+rsi]
mov r13,QWORD PTR[16+rsi]
mov r12,QWORD PTR[24+rsi]
mov rbp,QWORD PTR[32+rsi]
mov rbx,QWORD PTR[40+rsi]
lea rsp,QWORD PTR[48+rsi]
$L$epilogue_ssse3::
mov rdi,QWORD PTR[8+rsp] ;WIN64 epilogue
mov rsi,QWORD PTR[16+rsp]
DB 0F3h,0C3h ;repret
$L$SEH_end_aesni_cbc_sha1_enc_ssse3::
aesni_cbc_sha1_enc_ssse3 ENDP
ALIGN 64
K_XX_XX::
DD 05a827999h,05a827999h,05a827999h,05a827999h
DD 06ed9eba1h,06ed9eba1h,06ed9eba1h,06ed9eba1h
DD 08f1bbcdch,08f1bbcdch,08f1bbcdch,08f1bbcdch
DD 0ca62c1d6h,0ca62c1d6h,0ca62c1d6h,0ca62c1d6h
DD 000010203h,004050607h,008090a0bh,00c0d0e0fh
DB 65,69,83,78,73,45,67,66,67,43,83,72,65,49,32,115
DB 116,105,116,99,104,32,102,111,114,32,120,56,54,95,54,52
DB 44,32,67,82,89,80,84,79,71,65,77,83,32,98,121,32
DB 60,97,112,112,114,111,64,111,112,101,110,115,115,108,46,111
DB 114,103,62,0
ALIGN 64
EXTERN __imp_RtlVirtualUnwind:NEAR
ALIGN 16
ssse3_handler PROC PRIVATE
push rsi
push rdi
push rbx
push rbp
push r12
push r13
push r14
push r15
pushfq
sub rsp,64
mov rax,QWORD PTR[120+r8]
mov rbx,QWORD PTR[248+r8]
mov rsi,QWORD PTR[8+r9]
mov r11,QWORD PTR[56+r9]
mov r10d,DWORD PTR[r11]
lea r10,QWORD PTR[r10*1+rsi]
cmp rbx,r10
jb $L$common_seh_tail
mov rax,QWORD PTR[152+r8]
mov r10d,DWORD PTR[4+r11]
lea r10,QWORD PTR[r10*1+rsi]
cmp rbx,r10
jae $L$common_seh_tail
lea rsi,QWORD PTR[96+rax]
lea rdi,QWORD PTR[512+r8]
mov ecx,20
DD 0a548f3fch
lea rax,QWORD PTR[264+rax]
mov r15,QWORD PTR[rax]
mov r14,QWORD PTR[8+rax]
mov r13,QWORD PTR[16+rax]
mov r12,QWORD PTR[24+rax]
mov rbp,QWORD PTR[32+rax]
mov rbx,QWORD PTR[40+rax]
lea rax,QWORD PTR[48+rax]
mov QWORD PTR[144+r8],rbx
mov QWORD PTR[160+r8],rbp
mov QWORD PTR[216+r8],r12
mov QWORD PTR[224+r8],r13
mov QWORD PTR[232+r8],r14
mov QWORD PTR[240+r8],r15
$L$common_seh_tail::
mov rdi,QWORD PTR[8+rax]
mov rsi,QWORD PTR[16+rax]
mov QWORD PTR[152+r8],rax
mov QWORD PTR[168+r8],rsi
mov QWORD PTR[176+r8],rdi
mov rdi,QWORD PTR[40+r9]
mov rsi,r8
mov ecx,154
DD 0a548f3fch
mov rsi,r9
xor rcx,rcx
mov rdx,QWORD PTR[8+rsi]
mov r8,QWORD PTR[rsi]
mov r9,QWORD PTR[16+rsi]
mov r10,QWORD PTR[40+rsi]
lea r11,QWORD PTR[56+rsi]
lea r12,QWORD PTR[24+rsi]
mov QWORD PTR[32+rsp],r10
mov QWORD PTR[40+rsp],r11
mov QWORD PTR[48+rsp],r12
mov QWORD PTR[56+rsp],rcx
call QWORD PTR[__imp_RtlVirtualUnwind]
mov eax,1
add rsp,64
popfq
pop r15
pop r14
pop r13
pop r12
pop rbp
pop rbx
pop rdi
pop rsi
DB 0F3h,0C3h ;repret
ssse3_handler ENDP
.text$ ENDS
.pdata SEGMENT READONLY ALIGN(4)
ALIGN 4
DD imagerel $L$SEH_begin_aesni_cbc_sha1_enc_ssse3
DD imagerel $L$SEH_end_aesni_cbc_sha1_enc_ssse3
DD imagerel $L$SEH_info_aesni_cbc_sha1_enc_ssse3
.pdata ENDS
.xdata SEGMENT READONLY ALIGN(8)
ALIGN 8
$L$SEH_info_aesni_cbc_sha1_enc_ssse3::
DB 9,0,0,0
DD imagerel ssse3_handler
DD imagerel $L$prologue_ssse3,imagerel $L$epilogue_ssse3
.xdata ENDS
END
|