Subversion Repositories Kolibri OS

Rev

Rev 6461 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6461 Rev 6465
Line 14... Line 14...
14
;
14
;
15
;    You should have received a copy of the GNU General Public License
15
;    You should have received a copy of the GNU General Public License
16
;    along with this program.  If not, see .
16
;    along with this program.  If not, see .
Line 17... Line -...
17
 
-
 
18
 
-
 
19
MD4_BLOCK_SIZE = 64
-
 
20
MD4_HASH_SIZE  = 16
-
 
21
MD4_ALIGN      = 4
-
 
22
MD4_ALIGN_MASK = MD4_ALIGN - 1
-
 
23
 
-
 
24
struct ctx_md4
-
 
25
        hash            rb MD4_HASH_SIZE
-
 
26
        block           rb MD4_BLOCK_SIZE
-
 
27
        index           rd 1
-
 
28
        msglen_0        rd 1
-
 
29
        msglen_1        rd 1
-
 
30
ends
-
 
31
 
17
 
32
 
18
 
33
macro md4._.f b, c, d
19
macro md4._.f b, c, d
34
{
20
{
35
        mov     eax, c
21
        mov     eax, c