Update contrib.
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // File contains internal classes for Ascii To Base64 converison
25 #ifndef __TCONVBASE64_H__
26 #define __TCONVBASE64_H__
31 const TInt KMaxB64EncodedCharsPerLine = 60;
32 // Could be increased to 75 characters for every encoded line if KDecodeLineLength = 675.
33 // 60 was chosen to maintain existing behaviour.
34 const TInt8 KImcvLookUpStartOffset = 43;
35 const TUint8 KImcvConvEquals = '=';
36 const TInt8 AsciiToBase64[80]=
38 62, -1, -1, -1, 63, 52, 53, 54, 55, 56,
39 57, 58, 59, 60, 61, -1, -1, -1, 64, -1,
40 -1, -1, 0, 1, 2, 3, 4, 5, 6, 7,
41 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
42 18, 19, 20, 21, 22, 23, 24, 25, -1, -1,
43 -1, -1, -1, -1, 26, 27, 28, 29, 30, 31,
44 32, 33, 34, 35, 36, 37, 38, 39, 40, 41,
45 42, 43, 44, 45, 46, 47, 48, 49, 50, 51
47 const TInt8 Base64ToAscii[65]=
49 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
50 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
51 85, 86, 87, 88, 89, 90, 97, 98, 99,100,
52 101,102,103,104,105,106,107,108,109,110,
53 111,112,113,114,115,116,117,118,119,120,
54 121,122, 48, 49, 50, 51, 52, 53, 54, 55,
59 Base64 encoding and decoding class.
67 enum base64 coding defines
71 /** Padding characters */
82 /** Mask Eight bits */
87 enum for EMaskShiftValues
103 IMPORT_C TInt Encode( const TDesC8& aSrcString, TDes8& rDestString);
104 IMPORT_C TBool Decode( const TDesC8& aSrcString, TDes8& rDestString);
105 IMPORT_C TInt PortableEncode(const TDesC8& aSrcString, TDes8& aDestString, TInt aLineLength=-1);
109 TInt iMaskShiftStored;
112 #endif // __TCONVBASE64_H__