os/security/cryptomgmtlibs/securityutils/privateinc/e32secdes8.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "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".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 /**
    22  @file
    23  @internalTechnology
    24 */
    25 
    26 #ifndef __TSECBUF8_H__
    27 #define __TSECBUF8_H__
    28 
    29 #include <e32des8.h>
    30 
    31 template <TInt S> 
    32 class TSecBuf8 : public TBuf8<S>
    33 	{
    34 public:
    35 	inline TSecBuf8(void);
    36 	inline TSecBuf8(TInt aLength);
    37 	inline TSecBuf8(const TUint8* aString);
    38 	inline TSecBuf8(const TDesC8& aDes);
    39 	inline ~TSecBuf8(void);
    40 	inline TSecBuf8<S>& operator=(const TUint8* aString);
    41 	inline TSecBuf8<S>& operator=(const TDesC8& aDes);
    42 	inline TSecBuf8<S>& operator=(const TSecBuf8<S>& aBuf);
    43 	};
    44 
    45 template <TInt S> 
    46 inline TSecBuf8<S>::TSecBuf8(void) 
    47 	: TBuf8<S>() 
    48 	{}
    49 template <TInt S> 
    50 inline TSecBuf8<S>::TSecBuf8(TInt aLength) 
    51 	: TBuf8<S>(aLength) 
    52 	{}
    53 template <TInt S> 
    54 inline TSecBuf8<S>::TSecBuf8(const TUint8* aString)
    55 	: TBuf8<S>(aString) 
    56 	{}
    57 template <TInt S> 
    58 inline TSecBuf8<S>::TSecBuf8(const TDesC8& aDes)
    59 	: TBuf8<S>(aDes) 
    60 	{}
    61 template <TInt S> 
    62 inline TSecBuf8<S>::~TSecBuf8(void)
    63 	{
    64 	FillZ(MaxLength());
    65 	SetLength(0);
    66 	}
    67 template <TInt S>
    68 inline TSecBuf8<S>& TSecBuf8<S>::operator=(const TUint8* aString)
    69 	{
    70 	Copy(aString); return(*this);
    71 	}
    72 template <TInt S>
    73 inline TSecBuf8<S>& TSecBuf8<S>::operator=(const TDesC8& aDes)
    74 	{
    75 	Copy(aDes); return(*this);
    76 	}
    77 template <TInt S>
    78 inline TSecBuf8<S>& TSecBuf8<S>::operator=(const TSecBuf8<S>& aBuf)
    79 	{
    80 	Copy(aBuf); return(*this);
    81 	}
    82 
    83 #endif