Subversion Repositories Kolibri OS

Rev

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

Rev 6922 Rev 7698
Line 20... Line 20...
20
; To compute HMAC over the data `text' we perform
20
; To compute HMAC over the data `text' we perform
21
; H(K XOR opad, H(K XOR ipad, text))
21
; H(K XOR opad, H(K XOR ipad, text))
Line 22... Line 22...
22
 
22
 
23
struct hmac_md5_context
23
struct hmac_md5_context
24
        hash            rb MD5_HASH_SIZE
24
        hash            rb MD5_HASH_SIZE
25
        ipad_ctx        ctx_md5
25
        ipad_ctx        crash_ctx
26
        opad_ctx        ctx_md5
26
        opad_ctx        crash_ctx
Line 27... Line 27...
27
ends
27
ends
28
 
28