Subversion Repositories Kolibri OS

Rev

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

Rev 9132 Rev 9216
Line 47... Line 47...
47
purge mov,add,sub
47
purge mov,add,sub
48
include '../../proc32.inc'
48
include '../../proc32.inc'
49
include '../../dll.inc'
49
include '../../dll.inc'
50
include '../../debug-fdo.inc'
50
include '../../debug-fdo.inc'
51
include '../../network.inc'
51
include '../../network.inc'
52
include '../../develop/libraries/libcrash/trunk/libcrash.inc'
52
include '../../develop/libraries/libcrash/libcrash.inc'
Line 53... Line 53...
53
 
53
 
54
; macros for network byte order
54
; macros for network byte order
55
macro dd_n op {
55
macro dd_n op {
56
   dd 0 or (((op) and 0FF000000h) shr 24) or \
56
   dd 0 or (((op) and 0FF000000h) shr 24) or \
Line 619... Line 619...
619
        con_get_flags, 'con_get_flags', \
619
        con_get_flags, 'con_get_flags', \
620
        con_set_title, 'con_set_title', \
620
        con_set_title, 'con_set_title', \
621
        con_get_input, 'con_get_input'
621
        con_get_input, 'con_get_input'
Line 622... Line 622...
622
 
622
 
623
import  libcrash, \
623
import  libcrash, \
624
        sha512_init, 'sha512_init', \
624
        sha2_512_init, 'sha2_512_init', \
625
        sha512_update, 'sha512_update', \
625
        sha2_512_update, 'sha2_512_update', \
626
        sha512_final, 'sha512_final',\
626
        sha2_512_finish, 'sha2_512_finish',\
627
        sha256_init, 'sha256_init', \
627
        sha2_256_init, 'sha2_256_init', \
628
        sha256_update, 'sha256_update', \
628
        sha2_256_update, 'sha2_256_update', \
629
        sha256_final, 'sha256_final',\
629
        sha2_256_finish, 'sha2_256_finish',\
630
        sha1_init, 'sha1_init', \
630
        sha1_init, 'sha1_init', \
631
        sha1_update, 'sha1_update', \
631
        sha1_update, 'sha1_update', \
632
        sha1_final, 'sha1_final', \
632
        sha1_finish, 'sha1_finish', \
633
        md5_init, 'md5_init', \
633
        md5_init, 'md5_init', \
634
        md5_update, 'md5_update', \
634
        md5_update, 'md5_update', \
Line 635... Line 635...
635
        md5_final, 'md5_final'
635
        md5_finish, 'md5_finish'
636
 
636
 
637
import  libini, \
637
import  libini, \