sl@0: /*
sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0: * All rights reserved.
sl@0: * This component and the accompanying materials are made available
sl@0: * under the terms of the License "Eclipse Public License v1.0"
sl@0: * which accompanies this distribution, and is available
sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0: *
sl@0: * Initial Contributors:
sl@0: * Nokia Corporation - initial contribution.
sl@0: *
sl@0: * Contributors:
sl@0: *
sl@0: * Description: 
sl@0: *
sl@0: */
sl@0: 
sl@0: 
sl@0: #ifndef TPBE_H
sl@0: #define TPBE_H
sl@0: 
sl@0: #include "pkcs5kdf.h"
sl@0: #include "pkcs12kdf.h"
sl@0: 
sl@0: _LIT8(KInputStart, "<input>");
sl@0: _LIT8(KInputEnd, "</input>");
sl@0: _LIT8(KPasswdStart, "<passwd>");
sl@0: _LIT8(KPasswdEnd, "</passwd>");
sl@0: _LIT8(KKdfStart, "<kdf>");
sl@0: _LIT8(KKdfEnd, "</kdf>");
sl@0: _LIT8(KSaltLenBytesStart, "<salt_len_bytes>");
sl@0: _LIT8(KSaltLenBytesEnd, "</salt_len_bytes>");
sl@0: _LIT8(KCipherStart, "<cipher>");
sl@0: _LIT8(KCipherEnd, "</cipher>");
sl@0: _LIT8(KIterCountStart, "<iter_count>");
sl@0: _LIT8(KIterCountEnd, "</iter_count>");
sl@0: _LIT8(KECipherAES_CBC_128, "ECipherAES_CBC_128");
sl@0: _LIT8(KECipherAES_CBC_192, "ECipherAES_CBC_192");
sl@0: _LIT8(KECipherAES_CBC_256, "ECipherAES_CBC_256");
sl@0: _LIT8(KECipherDES_CBC, "ECipherDES_CBC");
sl@0: _LIT8(KECipher3DES_CBC, "ECipher3DES_CBC");
sl@0: _LIT8(KECipherRC2_CBC_40, "ECipherRC2_CBC_40");
sl@0: _LIT8(KECipherRC2_CBC_128, "ECipherRC2_CBC_128");
sl@0: _LIT8(KECipherRC2_CBC_40_16, "ECipherRC2_CBC_40_16");
sl@0: _LIT8(KECipherRC2_CBC_128_16, "ECipherRC2_CBC_128_16");
sl@0: 
sl@0: _LIT8(KECipherARC4_128, "ECipherARC4_128");
sl@0: _LIT8(KECipherARC4_40, "ECipherARC4_40");
sl@0: _LIT8(KECipher2Key3DES_CBC, "ECipher2Key3DES_CBC");
sl@0: _LIT8(KECipherRC2_CBC_40_5, "ECipherRC2_CBC_40_5");
sl@0: 
sl@0: #endif
sl@0: 
sl@0: