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
MD5_BLOCK_SIZE = 64
-
 
20
MD5_HASH_SIZE  = 16
-
 
21
MD5_ALIGN      = 4
-
 
22
MD5_ALIGN_MASK = MD5_ALIGN - 1
-
 
23
 
-
 
24
struct ctx_md5
-
 
25
        hash            rb MD5_HASH_SIZE
-
 
26
        block           rb MD5_BLOCK_SIZE
-
 
27
        index           rd 1
-
 
28
        msglen_0        rd 1
-
 
29
        msglen_1        rd 1
-
 
30
ends
-
 
31
 
17
 
32
 
18
 
33
macro md5._.f b, c, d
19
macro md5._.f b, c, d
34
{
20
{
35
        push    c
21
        push    c