OLD | NEW |
1 OPTION DOTNAME | 1 OPTION DOTNAME |
2 .text$» SEGMENT ALIGN(64) 'CODE' | 2 .text$» SEGMENT ALIGN(256) 'CODE' |
3 ALIGN 16 | 3 ALIGN 16 |
4 | 4 |
5 PUBLIC rc4_md5_enc | 5 PUBLIC rc4_md5_enc |
6 | 6 |
7 rc4_md5_enc PROC PUBLIC | 7 rc4_md5_enc PROC PUBLIC |
8 mov QWORD PTR[8+rsp],rdi ;WIN64 prologue | 8 mov QWORD PTR[8+rsp],rdi ;WIN64 prologue |
9 mov QWORD PTR[16+rsp],rsi | 9 mov QWORD PTR[16+rsp],rsi |
10 mov rax,rsp | 10 mov rax,rsp |
11 $L$SEH_begin_rc4_md5_enc:: | 11 $L$SEH_begin_rc4_md5_enc:: |
12 mov rdi,rcx | 12 mov rdi,rcx |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1365 | 1365 |
1366 .pdata ENDS | 1366 .pdata ENDS |
1367 .xdata SEGMENT READONLY ALIGN(8) | 1367 .xdata SEGMENT READONLY ALIGN(8) |
1368 ALIGN 8 | 1368 ALIGN 8 |
1369 $L$SEH_info_rc4_md5_enc:: | 1369 $L$SEH_info_rc4_md5_enc:: |
1370 DB 9,0,0,0 | 1370 DB 9,0,0,0 |
1371 DD imagerel se_handler | 1371 DD imagerel se_handler |
1372 | 1372 |
1373 .xdata ENDS | 1373 .xdata ENDS |
1374 END | 1374 END |
OLD | NEW |