os/security/cryptomgmtlibs/cryptotokenfw/inc/securitydefs.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2003-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  @file 
    20  @publishedAll
    21  @released
    22 */
    23 
    24 
    25 /**
    26  * 
    27  * 
    28  * @param aLeft
    29  * @param aRight
    30  * @return
    31 */
    32 inline TKeyUsagePKCS15 operator|(TKeyUsagePKCS15 aLeft, TKeyUsagePKCS15 aRight)
    33 	{
    34 	return static_cast<TKeyUsagePKCS15>(static_cast<TUint>(aLeft) | static_cast<TUint>(aRight));
    35 	}
    36 
    37 
    38 /** 
    39  *
    40  *
    41  * @param aLeft
    42  * @param aRight
    43  * @return
    44  */
    45 inline TKeyUsagePKCS15 operator&(TKeyUsagePKCS15 aLeft, TKeyUsagePKCS15 aRight)
    46 	{
    47 	return static_cast<TKeyUsagePKCS15>(static_cast<TUint>(aLeft) & static_cast<TUint>(aRight));
    48 	}
    49 
    50 
    51 /** 
    52  *
    53  *
    54  * @param aLeft
    55  * @param aRight
    56  * @return
    57  */
    58 inline const TKeyUsagePKCS15& operator|=(TKeyUsagePKCS15& aLeft, TKeyUsagePKCS15 aRight)
    59 	{
    60 	aLeft = aLeft | aRight;
    61 	return aLeft;
    62 	}
    63 
    64 
    65 /** 
    66  *
    67  *
    68  * @param aLeft
    69  * @param aRight
    70  * @return
    71  */
    72 inline const TKeyUsagePKCS15& operator&=(TKeyUsagePKCS15& aLeft, TKeyUsagePKCS15 aRight)
    73 	{
    74 	aLeft = aLeft & aRight;
    75 	return aLeft;
    76 	}
    77 
    78 
    79 /** 
    80  *
    81  *
    82  * @param aLeft
    83  * @param aRight
    84  * @return
    85  */
    86 inline TKeyUsageX509 operator|(TKeyUsageX509 aLeft, TKeyUsageX509 aRight)
    87 	{
    88 	return static_cast<TKeyUsageX509>(static_cast<TUint>(aLeft) | static_cast<TUint>(aRight));
    89 	}
    90 
    91 
    92 /** 
    93  *
    94  *
    95  * @param aLeft
    96  * @param aRight
    97  * @return
    98  */
    99 inline TKeyUsageX509 operator&(TKeyUsageX509 aLeft, TKeyUsageX509 aRight)
   100 	{
   101 	return static_cast<TKeyUsageX509>(static_cast<TUint>(aLeft) & static_cast<TUint>(aRight));
   102 	}
   103 
   104 
   105 /** 
   106  *
   107  *
   108  * @param aLeft
   109  * @param aRight
   110  * @return
   111  */
   112 inline const TKeyUsageX509& operator|=(TKeyUsageX509& aLeft, TKeyUsageX509 aRight)
   113 	{
   114 	aLeft = aLeft | aRight;
   115 	return aLeft;
   116 	}
   117 
   118 
   119 /** 
   120  *
   121  *
   122  * @param aLeft
   123  * @param aRight
   124  * @return
   125  */
   126 inline const TKeyUsageX509& operator&=(TKeyUsageX509& aLeft, TKeyUsageX509 aRight)
   127 	{
   128 	aLeft = aLeft & aRight;
   129 	return aLeft;
   130 	}