2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 * Purpose: The implementation of LIST data structure.
29 * s_dwGetUINT32 - Convert from BYTE[] to DWORD in a portable way
30 * s_vPutUINT32 - Convert from DWORD to BYTE[] in a portable way
31 * s_vClear - Reset the state to the empty message.
32 * s_vSetKey - Set the key.
33 * MIC_vInit - Set the key.
34 * s_vAppendByte - Append the byte to our word-sized buffer.
35 * MIC_vAppend - call s_vAppendByte.
36 * MIC_vGetMIC - Append the minimum padding and call s_vAppendByte.
42 #if !defined(__TMACRO_H__)
45 #if !defined(__TBIT_H__)
48 #if !defined(__MICHAEL_H__)
52 /*--------------------- Static Definitions -------------------------*/
54 /*--------------------- Static Variables --------------------------*/
56 /*--------------------- Static Functions --------------------------*/
58 static DWORD s_dwGetUINT32(BYTE * p); // Get DWORD from 4 bytes LSByte first
59 static VOID s_vPutUINT32(BYTE* p, DWORD val); // Put DWORD into 4 bytes LSByte first
61 static VOID
s_vClear(void); // Clear the internal message,
62 // resets the object to the state just after construction.
63 static VOID
s_vSetKey(DWORD dwK0
, DWORD dwK1
);
64 static VOID
s_vAppendByte(BYTE b
); // Add a single byte to the internal message
66 /*--------------------- Export Variables --------------------------*/
67 static DWORD L
, R
; // Current state
69 static DWORD K0
, K1
; // Key
70 static DWORD M
; // Message accumulator (single word)
71 static UINT nBytesInM
; // # bytes in M
73 /*--------------------- Export Functions --------------------------*/
76 static DWORD s_dwGetUINT32 (BYTE * p)
77 // Convert from BYTE[] to DWORD in a portable way
83 res |= (*p++) << (8*i);
88 static VOID s_vPutUINT32 (BYTE* p, DWORD val)
89 // Convert from DWORD to BYTE[] in a portable way
94 *p++ = (BYTE) (val & 0xff);
100 static VOID
s_vClear (void)
102 // Reset the state to the empty message.
109 static VOID
s_vSetKey (DWORD dwK0
, DWORD dwK1
)
114 // and reset the message
118 static VOID
s_vAppendByte (BYTE b
)
120 // Append the byte to our word-sized buffer
121 M
|= b
<< (8*nBytesInM
);
123 // Process the word if it is full.
129 R
^= ((L
& 0xff00ff00) >> 8) | ((L
& 0x00ff00ff) << 8);
141 VOID
MIC_vInit (DWORD dwK0
, DWORD dwK1
)
144 s_vSetKey(dwK0
, dwK1
);
148 VOID
MIC_vUnInit (void)
150 // Wipe the key material
154 // And the other fields as well.
155 //Note that this sets (L,R) to (K0,K1) which is just fine.
159 VOID
MIC_vAppend (PBYTE src
, UINT nBytes
)
164 s_vAppendByte(*src
++);
169 VOID
MIC_vGetMIC (PDWORD pdwL
, PDWORD pdwR
)
171 // Append the minimum padding
177 // and then zeroes until the length is a multiple of 4
178 while( nBytesInM
!= 0 )
182 // The s_vAppendByte function has already computed the result.
185 // Reset to the empty message.