eapol/eapol_framework/wapi_common/include/ec_cs_compare_reference_issuer_name.h
changeset 18 7aac0b9e8906
parent 17 8840d3e38314
child 20 8b3129ac4c0f
equal deleted inserted replaced
17:8840d3e38314 18:7aac0b9e8906
     1 /*
       
     2 * ============================================================================
       
     3 *  Name        : ./accesssec/eapol/eapol_framework/wapi_common/include/ec_cs_compare_reference_issuer_name.h
       
     4 *  Part of     : WAPI / WAPI       *** Info from the SWAD
       
     5 *  Description : WAPI authentication
       
     6 *  Version     : %version: 3 % << Don't touch! Updated by Synergy at check-out.
       
     7 *
       
     8 *  Copyright © 2001-2009 Nokia.  All rights reserved.
       
     9 *  This material, including documentation and any related computer
       
    10 *  programs, is protected by copyright controlled by Nokia.  All
       
    11 *  rights are reserved.  Copying, including reproducing, storing,
       
    12 *  adapting or translating, any or all of this material requires the
       
    13 *  prior written consent of Nokia.  This material also contains
       
    14 *  confidential information which may not be disclosed to others
       
    15 *  without the prior written consent of Nokia.
       
    16 * ============================================================================
       
    17 * Template version: 4.2
       
    18 */
       
    19 
       
    20 
       
    21 
       
    22 #if !defined(_EC_CS_COMPARE_REFERENCE_ISSUER_NAME_H_)
       
    23 #define _EC_CS_COMPARE_REFERENCE_ISSUER_NAME_H_
       
    24 
       
    25 #if defined(USE_WAPI_CORE)
       
    26 
       
    27 #include "eap_tools.h"
       
    28 #include "eap_general_header_base.h"
       
    29 #include "ec_cs_types.h"
       
    30 #include "eap_array_algorithms.h"
       
    31 
       
    32 /** @file */
       
    33 
       
    34 //----------------------------------------------------------------------------------
       
    35 
       
    36 class EAP_EXPORT ec_cs_compare_reference_issuer_name_c
       
    37 : public abs_eap_array_compare_c<ec_cs_data_c>
       
    38 {
       
    39 public:
       
    40 
       
    41 	EAP_FUNC_IMPORT virtual ~ec_cs_compare_reference_issuer_name_c();
       
    42 
       
    43 	EAP_FUNC_IMPORT ec_cs_compare_reference_issuer_name_c(
       
    44 		abs_eap_am_tools_c * const tools);
       
    45 
       
    46 	EAP_FUNC_IMPORT i32_t compare(
       
    47 		const ec_cs_data_c * const reference_from_array,
       
    48 		const ec_cs_data_c * const certificate_identity) const;
       
    49 
       
    50 private:
       
    51 
       
    52 	abs_eap_am_tools_c * const m_am_tools;
       
    53 
       
    54 };
       
    55 
       
    56 //----------------------------------------------------------------------------------
       
    57 
       
    58 #endif //#if defined(USE_WAPI_CORE)
       
    59 
       
    60 #endif //#if !defined(_EC_CS_COMPARE_REFERENCE_ISSUER_NAME_H_)
       
    61 
       
    62 
       
    63 
       
    64 // End.