sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef EMULATOR
|
sl@0
|
21 |
#define EMULATOR ((defined(__WINS__) || defined(__WINSCW__)))
|
sl@0
|
22 |
#endif
|
sl@0
|
23 |
|
sl@0
|
24 |
#if EMULATOR
|
sl@0
|
25 |
#include <sys/types.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
typedef struct TLibcryptWsd
|
sl@0
|
28 |
{
|
sl@0
|
29 |
/* encrypt.cpp desKey */
|
sl@0
|
30 |
unsigned char desKey[64]; // For persistence between calls
|
sl@0
|
31 |
// to setkey() and encrypt()
|
sl@0
|
32 |
int bSetkeyInvoked;
|
sl@0
|
33 |
/* encrypt.cpp desKey */
|
sl@0
|
34 |
|
sl@0
|
35 |
/* crypt_md5() crypt-md5.c */
|
sl@0
|
36 |
const char *sp, *ep;
|
sl@0
|
37 |
char passwd[120], *p;
|
sl@0
|
38 |
/* crypt_md5() crypt-md5.c */
|
sl@0
|
39 |
|
sl@0
|
40 |
/* crypt-des.c */
|
sl@0
|
41 |
u_int32_t bits32[32]; /* Initialialize this array */
|
sl@0
|
42 |
|
sl@0
|
43 |
u_char inv_key_perm[64]; /* No specific initial values. However, initialize
|
sl@0
|
44 |
* the array to zero.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
|
sl@0
|
47 |
u_char inv_comp_perm[56]; /* No specific initial values. However, initialize
|
sl@0
|
48 |
* the array to zero.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
u_char u_sbox[8][64];
|
sl@0
|
51 |
|
sl@0
|
52 |
u_char un_pbox[32];
|
sl@0
|
53 |
|
sl@0
|
54 |
u_int32_t saltbits;
|
sl@0
|
55 |
u_int32_t old_salt;
|
sl@0
|
56 |
u_int32_t *bits28, *bits24;
|
sl@0
|
57 |
u_char init_perm[64], final_perm[64];
|
sl@0
|
58 |
u_int32_t en_keysl[16], en_keysr[16];
|
sl@0
|
59 |
u_int32_t de_keysl[16], de_keysr[16];
|
sl@0
|
60 |
int des_initialised; /* = 0 ... inportant */
|
sl@0
|
61 |
|
sl@0
|
62 |
u_char **m_sbox; // [4][4096] bytes of dynamic storage
|
sl@0
|
63 |
__uint32_t **psbox; // ([4][256] * 4) bytes of dynamic storage
|
sl@0
|
64 |
|
sl@0
|
65 |
__uint32_t **ip_maskl, // ([8][256] * 4) bytes of dynamic storage
|
sl@0
|
66 |
**ip_maskr; // ([8][256] * 4) bytes of dynamic storage
|
sl@0
|
67 |
|
sl@0
|
68 |
__uint32_t **fp_maskl, // ([8][256] * 4) bytes of dynamic storage
|
sl@0
|
69 |
**fp_maskr; // ([8][256] * 4) bytes of dynamic storage
|
sl@0
|
70 |
|
sl@0
|
71 |
__uint32_t **key_perm_maskl, // ([8][128] * 4) bytes of dynamic storage
|
sl@0
|
72 |
**key_perm_maskr; // ([8][128] * 4) bytes of dynamic storage
|
sl@0
|
73 |
|
sl@0
|
74 |
__uint32_t **comp_maskl, // ([8][128] * 4) bytes of dynamic storage
|
sl@0
|
75 |
**comp_maskr; // ([8][128] * 4) bytes of dynamic storage
|
sl@0
|
76 |
|
sl@0
|
77 |
u_int32_t old_rawkey0, old_rawkey1; /* initialize this to zero */
|
sl@0
|
78 |
|
sl@0
|
79 |
char output[21];
|
sl@0
|
80 |
/* crypt-des.c */
|
sl@0
|
81 |
|
sl@0
|
82 |
}TLibcryptWsd;
|
sl@0
|
83 |
|
sl@0
|
84 |
#ifdef __cplusplus
|
sl@0
|
85 |
extern "C" TLibcryptWsd *GetGlobals();
|
sl@0
|
86 |
#else
|
sl@0
|
87 |
TLibcryptWsd *GetGlobals();
|
sl@0
|
88 |
#endif /* End __cplusplus */
|
sl@0
|
89 |
|
sl@0
|
90 |
#endif
|