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
|
IF @Version LT 800
ECHO MASM version 8.00 or later is strongly recommended.
ENDIF
.686
.XMM
IF @Version LT 800
XMMWORD STRUCT 16
DQ 2 dup (?)
XMMWORD ENDS
ENDIF
.MODEL FLAT
OPTION DOTNAME
IF @Version LT 800
.text$ SEGMENT PAGE 'CODE'
ELSE
.text$ SEGMENT ALIGN(64) 'CODE'
ENDIF
ALIGN 16
_padlock_capability PROC PUBLIC
$L_padlock_capability_begin::
push ebx
pushfd
pop eax
mov ecx,eax
xor eax,2097152
push eax
popfd
pushfd
pop eax
xor ecx,eax
xor eax,eax
bt ecx,21
jnc $L000noluck
cpuid
xor eax,eax
cmp ebx,0746e6543h
jne $L001zhaoxin
cmp edx,048727561h
jne $L000noluck
cmp ecx,0736c7561h
jne $L000noluck
jmp $L002zhaoxinEnd
$L001zhaoxin:
cmp ebx,068532020h
jne $L000noluck
cmp edx,068676e61h
jne $L000noluck
cmp ecx,020206961h
jne $L000noluck
$L002zhaoxinEnd:
mov eax,3221225472
cpuid
mov edx,eax
xor eax,eax
cmp edx,3221225473
jb $L000noluck
mov eax,1
cpuid
or eax,15
xor ebx,ebx
and eax,4095
cmp eax,1791
sete bl
mov eax,3221225473
push ebx
cpuid
pop ebx
mov eax,edx
shl ebx,4
and eax,4294967279
or eax,ebx
$L000noluck:
pop ebx
ret
_padlock_capability ENDP
ALIGN 16
_padlock_key_bswap PROC PUBLIC
$L_padlock_key_bswap_begin::
mov edx,DWORD PTR 4[esp]
mov ecx,DWORD PTR 240[edx]
$L003bswap_loop:
mov eax,DWORD PTR [edx]
bswap eax
mov DWORD PTR [edx],eax
lea edx,DWORD PTR 4[edx]
sub ecx,1
jnz $L003bswap_loop
ret
_padlock_key_bswap ENDP
ALIGN 16
_padlock_verify_context PROC PUBLIC
$L_padlock_verify_context_begin::
mov edx,DWORD PTR 4[esp]
lea eax,DWORD PTR $Lpadlock_saved_context
pushfd
call __padlock_verify_ctx
$L004verify_pic_point:
lea esp,DWORD PTR 4[esp]
ret
_padlock_verify_context ENDP
ALIGN 16
__padlock_verify_ctx PROC PRIVATE
bt DWORD PTR 4[esp],30
jnc $L005verified
cmp edx,DWORD PTR [eax]
je $L005verified
pushfd
popfd
$L005verified:
mov DWORD PTR [eax],edx
ret
__padlock_verify_ctx ENDP
ALIGN 16
_padlock_reload_key PROC PUBLIC
$L_padlock_reload_key_begin::
pushfd
popfd
ret
_padlock_reload_key ENDP
ALIGN 16
_padlock_aes_block PROC PUBLIC
$L_padlock_aes_block_begin::
push edi
push esi
push ebx
mov edi,DWORD PTR 16[esp]
mov esi,DWORD PTR 20[esp]
mov edx,DWORD PTR 24[esp]
mov ecx,1
lea ebx,DWORD PTR 32[edx]
lea edx,DWORD PTR 16[edx]
DB 243,15,167,200
pop ebx
pop esi
pop edi
ret
_padlock_aes_block ENDP
ALIGN 16
_padlock_ecb_encrypt PROC PUBLIC
$L_padlock_ecb_encrypt_begin::
push ebp
push ebx
push esi
push edi
mov edi,DWORD PTR 20[esp]
mov esi,DWORD PTR 24[esp]
mov edx,DWORD PTR 28[esp]
mov ecx,DWORD PTR 32[esp]
test edx,15
jnz $L006ecb_abort
test ecx,15
jnz $L006ecb_abort
lea eax,DWORD PTR $Lpadlock_saved_context
pushfd
cld
call __padlock_verify_ctx
$L007ecb_pic_point:
lea edx,DWORD PTR 16[edx]
xor eax,eax
xor ebx,ebx
test DWORD PTR [edx],32
jnz $L008ecb_aligned
test edi,15
setz al
test esi,15
setz bl
test eax,ebx
jnz $L008ecb_aligned
neg eax
mov ebx,512
not eax
lea ebp,DWORD PTR [esp-24]
cmp ecx,ebx
cmovc ebx,ecx
and eax,ebx
mov ebx,ecx
neg eax
and ebx,511
lea esp,DWORD PTR [ebp*1+eax]
mov eax,512
cmovz ebx,eax
mov eax,ebp
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
cmp ecx,ebx
ja $L009ecb_loop
mov eax,esi
cmp ebp,esp
cmove eax,edi
add eax,ecx
neg eax
and eax,4095
cmp eax,128
mov eax,-128
cmovae eax,ebx
and ebx,eax
jz $L010ecb_unaligned_tail
jmp $L009ecb_loop
ALIGN 16
$L009ecb_loop:
mov DWORD PTR [ebp],edi
mov DWORD PTR 4[ebp],esi
mov DWORD PTR 8[ebp],ecx
mov ecx,ebx
mov DWORD PTR 12[ebp],ebx
test edi,15
cmovnz edi,esp
test esi,15
jz $L011ecb_inp_aligned
shr ecx,2
DB 243,165
sub edi,ebx
mov ecx,ebx
mov esi,edi
$L011ecb_inp_aligned:
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,200
mov edi,DWORD PTR [ebp]
mov ebx,DWORD PTR 12[ebp]
test edi,15
jz $L012ecb_out_aligned
mov ecx,ebx
lea esi,DWORD PTR [esp]
shr ecx,2
DB 243,165
sub edi,ebx
$L012ecb_out_aligned:
mov esi,DWORD PTR 4[ebp]
mov ecx,DWORD PTR 8[ebp]
add edi,ebx
add esi,ebx
sub ecx,ebx
mov ebx,512
jz $L013ecb_break
cmp ecx,ebx
jae $L009ecb_loop
$L010ecb_unaligned_tail:
xor eax,eax
cmp esp,ebp
cmove eax,ecx
sub esp,eax
mov eax,edi
mov ebx,ecx
shr ecx,2
lea edi,DWORD PTR [esp]
DB 243,165
mov esi,esp
mov edi,eax
mov ecx,ebx
jmp $L009ecb_loop
ALIGN 16
$L013ecb_break:
cmp esp,ebp
je $L014ecb_done
pxor xmm0,xmm0
lea eax,DWORD PTR [esp]
$L015ecb_bzero:
movaps XMMWORD PTR [eax],xmm0
lea eax,DWORD PTR 16[eax]
cmp ebp,eax
ja $L015ecb_bzero
$L014ecb_done:
mov ebp,DWORD PTR 16[ebp]
lea esp,DWORD PTR 24[ebp]
jmp $L016ecb_exit
ALIGN 16
$L008ecb_aligned:
lea ebp,DWORD PTR [ecx*1+esi]
neg ebp
and ebp,4095
xor eax,eax
cmp ebp,128
mov ebp,127
cmovae ebp,eax
and ebp,ecx
sub ecx,ebp
jz $L017ecb_aligned_tail
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,200
test ebp,ebp
jz $L016ecb_exit
$L017ecb_aligned_tail:
mov ecx,ebp
lea ebp,DWORD PTR [esp-24]
mov esp,ebp
mov eax,ebp
sub esp,ecx
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
mov eax,edi
mov ebx,ecx
shr ecx,2
lea edi,DWORD PTR [esp]
DB 243,165
mov esi,esp
mov edi,eax
mov ecx,ebx
jmp $L009ecb_loop
$L016ecb_exit:
mov eax,1
lea esp,DWORD PTR 4[esp]
$L006ecb_abort:
pop edi
pop esi
pop ebx
pop ebp
ret
_padlock_ecb_encrypt ENDP
ALIGN 16
_padlock_cbc_encrypt PROC PUBLIC
$L_padlock_cbc_encrypt_begin::
push ebp
push ebx
push esi
push edi
mov edi,DWORD PTR 20[esp]
mov esi,DWORD PTR 24[esp]
mov edx,DWORD PTR 28[esp]
mov ecx,DWORD PTR 32[esp]
test edx,15
jnz $L018cbc_abort
test ecx,15
jnz $L018cbc_abort
lea eax,DWORD PTR $Lpadlock_saved_context
pushfd
cld
call __padlock_verify_ctx
$L019cbc_pic_point:
lea edx,DWORD PTR 16[edx]
xor eax,eax
xor ebx,ebx
test DWORD PTR [edx],32
jnz $L020cbc_aligned
test edi,15
setz al
test esi,15
setz bl
test eax,ebx
jnz $L020cbc_aligned
neg eax
mov ebx,512
not eax
lea ebp,DWORD PTR [esp-24]
cmp ecx,ebx
cmovc ebx,ecx
and eax,ebx
mov ebx,ecx
neg eax
and ebx,511
lea esp,DWORD PTR [ebp*1+eax]
mov eax,512
cmovz ebx,eax
mov eax,ebp
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
cmp ecx,ebx
ja $L021cbc_loop
mov eax,esi
cmp ebp,esp
cmove eax,edi
add eax,ecx
neg eax
and eax,4095
cmp eax,64
mov eax,-64
cmovae eax,ebx
and ebx,eax
jz $L022cbc_unaligned_tail
jmp $L021cbc_loop
ALIGN 16
$L021cbc_loop:
mov DWORD PTR [ebp],edi
mov DWORD PTR 4[ebp],esi
mov DWORD PTR 8[ebp],ecx
mov ecx,ebx
mov DWORD PTR 12[ebp],ebx
test edi,15
cmovnz edi,esp
test esi,15
jz $L023cbc_inp_aligned
shr ecx,2
DB 243,165
sub edi,ebx
mov ecx,ebx
mov esi,edi
$L023cbc_inp_aligned:
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,208
movaps xmm0,XMMWORD PTR [eax]
movaps XMMWORD PTR [edx-16],xmm0
mov edi,DWORD PTR [ebp]
mov ebx,DWORD PTR 12[ebp]
test edi,15
jz $L024cbc_out_aligned
mov ecx,ebx
lea esi,DWORD PTR [esp]
shr ecx,2
DB 243,165
sub edi,ebx
$L024cbc_out_aligned:
mov esi,DWORD PTR 4[ebp]
mov ecx,DWORD PTR 8[ebp]
add edi,ebx
add esi,ebx
sub ecx,ebx
mov ebx,512
jz $L025cbc_break
cmp ecx,ebx
jae $L021cbc_loop
$L022cbc_unaligned_tail:
xor eax,eax
cmp esp,ebp
cmove eax,ecx
sub esp,eax
mov eax,edi
mov ebx,ecx
shr ecx,2
lea edi,DWORD PTR [esp]
DB 243,165
mov esi,esp
mov edi,eax
mov ecx,ebx
jmp $L021cbc_loop
ALIGN 16
$L025cbc_break:
cmp esp,ebp
je $L026cbc_done
pxor xmm0,xmm0
lea eax,DWORD PTR [esp]
$L027cbc_bzero:
movaps XMMWORD PTR [eax],xmm0
lea eax,DWORD PTR 16[eax]
cmp ebp,eax
ja $L027cbc_bzero
$L026cbc_done:
mov ebp,DWORD PTR 16[ebp]
lea esp,DWORD PTR 24[ebp]
jmp $L028cbc_exit
ALIGN 16
$L020cbc_aligned:
lea ebp,DWORD PTR [ecx*1+esi]
neg ebp
and ebp,4095
xor eax,eax
cmp ebp,64
mov ebp,63
cmovae ebp,eax
and ebp,ecx
sub ecx,ebp
jz $L029cbc_aligned_tail
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,208
movaps xmm0,XMMWORD PTR [eax]
movaps XMMWORD PTR [edx-16],xmm0
test ebp,ebp
jz $L028cbc_exit
$L029cbc_aligned_tail:
mov ecx,ebp
lea ebp,DWORD PTR [esp-24]
mov esp,ebp
mov eax,ebp
sub esp,ecx
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
mov eax,edi
mov ebx,ecx
shr ecx,2
lea edi,DWORD PTR [esp]
DB 243,165
mov esi,esp
mov edi,eax
mov ecx,ebx
jmp $L021cbc_loop
$L028cbc_exit:
mov eax,1
lea esp,DWORD PTR 4[esp]
$L018cbc_abort:
pop edi
pop esi
pop ebx
pop ebp
ret
_padlock_cbc_encrypt ENDP
ALIGN 16
_padlock_cfb_encrypt PROC PUBLIC
$L_padlock_cfb_encrypt_begin::
push ebp
push ebx
push esi
push edi
mov edi,DWORD PTR 20[esp]
mov esi,DWORD PTR 24[esp]
mov edx,DWORD PTR 28[esp]
mov ecx,DWORD PTR 32[esp]
test edx,15
jnz $L030cfb_abort
test ecx,15
jnz $L030cfb_abort
lea eax,DWORD PTR $Lpadlock_saved_context
pushfd
cld
call __padlock_verify_ctx
$L031cfb_pic_point:
lea edx,DWORD PTR 16[edx]
xor eax,eax
xor ebx,ebx
test DWORD PTR [edx],32
jnz $L032cfb_aligned
test edi,15
setz al
test esi,15
setz bl
test eax,ebx
jnz $L032cfb_aligned
neg eax
mov ebx,512
not eax
lea ebp,DWORD PTR [esp-24]
cmp ecx,ebx
cmovc ebx,ecx
and eax,ebx
mov ebx,ecx
neg eax
and ebx,511
lea esp,DWORD PTR [ebp*1+eax]
mov eax,512
cmovz ebx,eax
mov eax,ebp
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
jmp $L033cfb_loop
ALIGN 16
$L033cfb_loop:
mov DWORD PTR [ebp],edi
mov DWORD PTR 4[ebp],esi
mov DWORD PTR 8[ebp],ecx
mov ecx,ebx
mov DWORD PTR 12[ebp],ebx
test edi,15
cmovnz edi,esp
test esi,15
jz $L034cfb_inp_aligned
shr ecx,2
DB 243,165
sub edi,ebx
mov ecx,ebx
mov esi,edi
$L034cfb_inp_aligned:
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,224
movaps xmm0,XMMWORD PTR [eax]
movaps XMMWORD PTR [edx-16],xmm0
mov edi,DWORD PTR [ebp]
mov ebx,DWORD PTR 12[ebp]
test edi,15
jz $L035cfb_out_aligned
mov ecx,ebx
lea esi,DWORD PTR [esp]
shr ecx,2
DB 243,165
sub edi,ebx
$L035cfb_out_aligned:
mov esi,DWORD PTR 4[ebp]
mov ecx,DWORD PTR 8[ebp]
add edi,ebx
add esi,ebx
sub ecx,ebx
mov ebx,512
jnz $L033cfb_loop
cmp esp,ebp
je $L036cfb_done
pxor xmm0,xmm0
lea eax,DWORD PTR [esp]
$L037cfb_bzero:
movaps XMMWORD PTR [eax],xmm0
lea eax,DWORD PTR 16[eax]
cmp ebp,eax
ja $L037cfb_bzero
$L036cfb_done:
mov ebp,DWORD PTR 16[ebp]
lea esp,DWORD PTR 24[ebp]
jmp $L038cfb_exit
ALIGN 16
$L032cfb_aligned:
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,224
movaps xmm0,XMMWORD PTR [eax]
movaps XMMWORD PTR [edx-16],xmm0
$L038cfb_exit:
mov eax,1
lea esp,DWORD PTR 4[esp]
$L030cfb_abort:
pop edi
pop esi
pop ebx
pop ebp
ret
_padlock_cfb_encrypt ENDP
ALIGN 16
_padlock_ofb_encrypt PROC PUBLIC
$L_padlock_ofb_encrypt_begin::
push ebp
push ebx
push esi
push edi
mov edi,DWORD PTR 20[esp]
mov esi,DWORD PTR 24[esp]
mov edx,DWORD PTR 28[esp]
mov ecx,DWORD PTR 32[esp]
test edx,15
jnz $L039ofb_abort
test ecx,15
jnz $L039ofb_abort
lea eax,DWORD PTR $Lpadlock_saved_context
pushfd
cld
call __padlock_verify_ctx
$L040ofb_pic_point:
lea edx,DWORD PTR 16[edx]
xor eax,eax
xor ebx,ebx
test DWORD PTR [edx],32
jnz $L041ofb_aligned
test edi,15
setz al
test esi,15
setz bl
test eax,ebx
jnz $L041ofb_aligned
neg eax
mov ebx,512
not eax
lea ebp,DWORD PTR [esp-24]
cmp ecx,ebx
cmovc ebx,ecx
and eax,ebx
mov ebx,ecx
neg eax
and ebx,511
lea esp,DWORD PTR [ebp*1+eax]
mov eax,512
cmovz ebx,eax
mov eax,ebp
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
jmp $L042ofb_loop
ALIGN 16
$L042ofb_loop:
mov DWORD PTR [ebp],edi
mov DWORD PTR 4[ebp],esi
mov DWORD PTR 8[ebp],ecx
mov ecx,ebx
mov DWORD PTR 12[ebp],ebx
test edi,15
cmovnz edi,esp
test esi,15
jz $L043ofb_inp_aligned
shr ecx,2
DB 243,165
sub edi,ebx
mov ecx,ebx
mov esi,edi
$L043ofb_inp_aligned:
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,232
movaps xmm0,XMMWORD PTR [eax]
movaps XMMWORD PTR [edx-16],xmm0
mov edi,DWORD PTR [ebp]
mov ebx,DWORD PTR 12[ebp]
test edi,15
jz $L044ofb_out_aligned
mov ecx,ebx
lea esi,DWORD PTR [esp]
shr ecx,2
DB 243,165
sub edi,ebx
$L044ofb_out_aligned:
mov esi,DWORD PTR 4[ebp]
mov ecx,DWORD PTR 8[ebp]
add edi,ebx
add esi,ebx
sub ecx,ebx
mov ebx,512
jnz $L042ofb_loop
cmp esp,ebp
je $L045ofb_done
pxor xmm0,xmm0
lea eax,DWORD PTR [esp]
$L046ofb_bzero:
movaps XMMWORD PTR [eax],xmm0
lea eax,DWORD PTR 16[eax]
cmp ebp,eax
ja $L046ofb_bzero
$L045ofb_done:
mov ebp,DWORD PTR 16[ebp]
lea esp,DWORD PTR 24[ebp]
jmp $L047ofb_exit
ALIGN 16
$L041ofb_aligned:
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,232
movaps xmm0,XMMWORD PTR [eax]
movaps XMMWORD PTR [edx-16],xmm0
$L047ofb_exit:
mov eax,1
lea esp,DWORD PTR 4[esp]
$L039ofb_abort:
pop edi
pop esi
pop ebx
pop ebp
ret
_padlock_ofb_encrypt ENDP
ALIGN 16
_padlock_ctr32_encrypt PROC PUBLIC
$L_padlock_ctr32_encrypt_begin::
push ebp
push ebx
push esi
push edi
mov edi,DWORD PTR 20[esp]
mov esi,DWORD PTR 24[esp]
mov edx,DWORD PTR 28[esp]
mov ecx,DWORD PTR 32[esp]
test edx,15
jnz $L048ctr32_abort
test ecx,15
jnz $L048ctr32_abort
lea eax,DWORD PTR $Lpadlock_saved_context
pushfd
cld
call __padlock_verify_ctx
$L049ctr32_pic_point:
lea edx,DWORD PTR 16[edx]
xor eax,eax
movq mm0,QWORD PTR [edx-16]
mov ebx,512
not eax
lea ebp,DWORD PTR [esp-24]
cmp ecx,ebx
cmovc ebx,ecx
and eax,ebx
mov ebx,ecx
neg eax
and ebx,511
lea esp,DWORD PTR [ebp*1+eax]
mov eax,512
cmovz ebx,eax
mov eax,ebp
and ebp,-16
and esp,-16
mov DWORD PTR 16[ebp],eax
jmp $L050ctr32_loop
ALIGN 16
$L050ctr32_loop:
mov DWORD PTR [ebp],edi
mov DWORD PTR 4[ebp],esi
mov DWORD PTR 8[ebp],ecx
mov ecx,ebx
mov DWORD PTR 12[ebp],ebx
mov ecx,DWORD PTR [edx-4]
xor edi,edi
mov eax,DWORD PTR [edx-8]
$L051ctr32_prepare:
mov DWORD PTR 12[edi*1+esp],ecx
bswap ecx
movq QWORD PTR [edi*1+esp],mm0
inc ecx
mov DWORD PTR 8[edi*1+esp],eax
bswap ecx
lea edi,DWORD PTR 16[edi]
cmp edi,ebx
jb $L051ctr32_prepare
mov DWORD PTR [edx-4],ecx
lea esi,DWORD PTR [esp]
lea edi,DWORD PTR [esp]
mov ecx,ebx
lea eax,DWORD PTR [edx-16]
lea ebx,DWORD PTR 16[edx]
shr ecx,4
DB 243,15,167,200
mov edi,DWORD PTR [ebp]
mov ebx,DWORD PTR 12[ebp]
mov esi,DWORD PTR 4[ebp]
xor ecx,ecx
$L052ctr32_xor:
movups xmm1,XMMWORD PTR [ecx*1+esi]
lea ecx,DWORD PTR 16[ecx]
pxor xmm1,XMMWORD PTR [ecx*1+esp-16]
movups XMMWORD PTR [ecx*1+edi-16],xmm1
cmp ecx,ebx
jb $L052ctr32_xor
mov ecx,DWORD PTR 8[ebp]
add edi,ebx
add esi,ebx
sub ecx,ebx
mov ebx,512
jnz $L050ctr32_loop
pxor xmm0,xmm0
lea eax,DWORD PTR [esp]
$L053ctr32_bzero:
movaps XMMWORD PTR [eax],xmm0
lea eax,DWORD PTR 16[eax]
cmp ebp,eax
ja $L053ctr32_bzero
$L054ctr32_done:
mov ebp,DWORD PTR 16[ebp]
lea esp,DWORD PTR 24[ebp]
mov eax,1
lea esp,DWORD PTR 4[esp]
emms
$L048ctr32_abort:
pop edi
pop esi
pop ebx
pop ebp
ret
_padlock_ctr32_encrypt ENDP
ALIGN 16
_padlock_xstore PROC PUBLIC
$L_padlock_xstore_begin::
push edi
mov edi,DWORD PTR 8[esp]
mov edx,DWORD PTR 12[esp]
DB 15,167,192
pop edi
ret
_padlock_xstore ENDP
ALIGN 16
__win32_segv_handler PROC PRIVATE
mov eax,1
mov edx,DWORD PTR 4[esp]
mov ecx,DWORD PTR 12[esp]
cmp DWORD PTR [edx],3221225477
jne $L055ret
add DWORD PTR 184[ecx],4
mov eax,0
$L055ret:
ret
__win32_segv_handler ENDP
IF @Version GE 710
.SAFESEH __win32_segv_handler
ENDIF
ALIGN 16
_padlock_sha1_oneshot PROC PUBLIC
$L_padlock_sha1_oneshot_begin::
push edi
push esi
xor eax,eax
mov edi,DWORD PTR 12[esp]
mov esi,DWORD PTR 16[esp]
mov ecx,DWORD PTR 20[esp]
push __win32_segv_handler
DB 100,255,48
DB 100,137,32
mov edx,esp
add esp,-128
movups xmm0,XMMWORD PTR [edi]
and esp,-16
mov eax,DWORD PTR 16[edi]
movaps XMMWORD PTR [esp],xmm0
mov edi,esp
mov DWORD PTR 16[esp],eax
xor eax,eax
DB 243,15,166,200
movaps xmm0,XMMWORD PTR [esp]
mov eax,DWORD PTR 16[esp]
mov esp,edx
DB 100,143,5,0,0,0,0
lea esp,DWORD PTR 4[esp]
mov edi,DWORD PTR 16[esp]
movups XMMWORD PTR [edi],xmm0
mov DWORD PTR 16[edi],eax
pop esi
pop edi
ret
_padlock_sha1_oneshot ENDP
ALIGN 16
_padlock_sha1_blocks PROC PUBLIC
$L_padlock_sha1_blocks_begin::
push edi
push esi
mov edi,DWORD PTR 12[esp]
mov esi,DWORD PTR 16[esp]
mov edx,esp
mov ecx,DWORD PTR 20[esp]
add esp,-128
movups xmm0,XMMWORD PTR [edi]
and esp,-16
mov eax,DWORD PTR 16[edi]
movaps XMMWORD PTR [esp],xmm0
mov edi,esp
mov DWORD PTR 16[esp],eax
mov eax,-1
DB 243,15,166,200
movaps xmm0,XMMWORD PTR [esp]
mov eax,DWORD PTR 16[esp]
mov esp,edx
mov edi,DWORD PTR 12[esp]
movups XMMWORD PTR [edi],xmm0
mov DWORD PTR 16[edi],eax
pop esi
pop edi
ret
_padlock_sha1_blocks ENDP
ALIGN 16
_padlock_sha256_oneshot PROC PUBLIC
$L_padlock_sha256_oneshot_begin::
push edi
push esi
xor eax,eax
mov edi,DWORD PTR 12[esp]
mov esi,DWORD PTR 16[esp]
mov ecx,DWORD PTR 20[esp]
push __win32_segv_handler
DB 100,255,48
DB 100,137,32
mov edx,esp
add esp,-128
movups xmm0,XMMWORD PTR [edi]
and esp,-16
movups xmm1,XMMWORD PTR 16[edi]
movaps XMMWORD PTR [esp],xmm0
mov edi,esp
movaps XMMWORD PTR 16[esp],xmm1
xor eax,eax
DB 243,15,166,208
movaps xmm0,XMMWORD PTR [esp]
movaps xmm1,XMMWORD PTR 16[esp]
mov esp,edx
DB 100,143,5,0,0,0,0
lea esp,DWORD PTR 4[esp]
mov edi,DWORD PTR 16[esp]
movups XMMWORD PTR [edi],xmm0
movups XMMWORD PTR 16[edi],xmm1
pop esi
pop edi
ret
_padlock_sha256_oneshot ENDP
ALIGN 16
_padlock_sha256_blocks PROC PUBLIC
$L_padlock_sha256_blocks_begin::
push edi
push esi
mov edi,DWORD PTR 12[esp]
mov esi,DWORD PTR 16[esp]
mov ecx,DWORD PTR 20[esp]
mov edx,esp
add esp,-128
movups xmm0,XMMWORD PTR [edi]
and esp,-16
movups xmm1,XMMWORD PTR 16[edi]
movaps XMMWORD PTR [esp],xmm0
mov edi,esp
movaps XMMWORD PTR 16[esp],xmm1
mov eax,-1
DB 243,15,166,208
movaps xmm0,XMMWORD PTR [esp]
movaps xmm1,XMMWORD PTR 16[esp]
mov esp,edx
mov edi,DWORD PTR 12[esp]
movups XMMWORD PTR [edi],xmm0
movups XMMWORD PTR 16[edi],xmm1
pop esi
pop edi
ret
_padlock_sha256_blocks ENDP
ALIGN 16
_padlock_sha512_blocks PROC PUBLIC
$L_padlock_sha512_blocks_begin::
push edi
push esi
mov edi,DWORD PTR 12[esp]
mov esi,DWORD PTR 16[esp]
mov ecx,DWORD PTR 20[esp]
mov edx,esp
add esp,-128
movups xmm0,XMMWORD PTR [edi]
and esp,-16
movups xmm1,XMMWORD PTR 16[edi]
movups xmm2,XMMWORD PTR 32[edi]
movups xmm3,XMMWORD PTR 48[edi]
movaps XMMWORD PTR [esp],xmm0
mov edi,esp
movaps XMMWORD PTR 16[esp],xmm1
movaps XMMWORD PTR 32[esp],xmm2
movaps XMMWORD PTR 48[esp],xmm3
DB 243,15,166,224
movaps xmm0,XMMWORD PTR [esp]
movaps xmm1,XMMWORD PTR 16[esp]
movaps xmm2,XMMWORD PTR 32[esp]
movaps xmm3,XMMWORD PTR 48[esp]
mov esp,edx
mov edi,DWORD PTR 12[esp]
movups XMMWORD PTR [edi],xmm0
movups XMMWORD PTR 16[edi],xmm1
movups XMMWORD PTR 32[edi],xmm2
movups XMMWORD PTR 48[edi],xmm3
pop esi
pop edi
ret
_padlock_sha512_blocks ENDP
DB 86,73,65,32,80,97,100,108,111,99,107,32,120,56,54,32
DB 109,111,100,117,108,101,44,32,67,82,89,80,84,79,71,65
DB 77,83,32,98,121,32,60,97,112,112,114,111,64,111,112,101
DB 110,115,115,108,46,111,114,103,62,0
ALIGN 16
.text$ ENDS
_DATA SEGMENT
ALIGN 4
$Lpadlock_saved_context::
DD 0
_DATA ENDS
END
|