Update contrib.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #define EMULATOR ((defined(__WINS__) || defined(__WINSCW__)))
25 #include <sys/types.h>
27 typedef struct TLibcryptWsd
29 /* encrypt.cpp desKey */
30 unsigned char desKey[64]; // For persistence between calls
31 // to setkey() and encrypt()
33 /* encrypt.cpp desKey */
35 /* crypt_md5() crypt-md5.c */
38 /* crypt_md5() crypt-md5.c */
41 u_int32_t bits32[32]; /* Initialialize this array */
43 u_char inv_key_perm[64]; /* No specific initial values. However, initialize
47 u_char inv_comp_perm[56]; /* No specific initial values. However, initialize
56 u_int32_t *bits28, *bits24;
57 u_char init_perm[64], final_perm[64];
58 u_int32_t en_keysl[16], en_keysr[16];
59 u_int32_t de_keysl[16], de_keysr[16];
60 int des_initialised; /* = 0 ... inportant */
62 u_char **m_sbox; // [4][4096] bytes of dynamic storage
63 __uint32_t **psbox; // ([4][256] * 4) bytes of dynamic storage
65 __uint32_t **ip_maskl, // ([8][256] * 4) bytes of dynamic storage
66 **ip_maskr; // ([8][256] * 4) bytes of dynamic storage
68 __uint32_t **fp_maskl, // ([8][256] * 4) bytes of dynamic storage
69 **fp_maskr; // ([8][256] * 4) bytes of dynamic storage
71 __uint32_t **key_perm_maskl, // ([8][128] * 4) bytes of dynamic storage
72 **key_perm_maskr; // ([8][128] * 4) bytes of dynamic storage
74 __uint32_t **comp_maskl, // ([8][128] * 4) bytes of dynamic storage
75 **comp_maskr; // ([8][128] * 4) bytes of dynamic storage
77 u_int32_t old_rawkey0, old_rawkey1; /* initialize this to zero */
85 extern "C" TLibcryptWsd *GetGlobals();
87 TLibcryptWsd *GetGlobals();
88 #endif /* End __cplusplus */