eapol/eapol_framework/eapol_common/include/abs_eap_pac_store_message.h
branchRCL_3
changeset 46 c74b3d9f6b9e
parent 45 bad0cc58d154
child 55 9c2aa05919d9
equal deleted inserted replaced
45:bad0cc58d154 46:c74b3d9f6b9e
     1 /*
       
     2 * Copyright (c) 2001-2006 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:  EAP and WLAN authentication protocols.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: %
       
    20 */
       
    21 
       
    22 #if !defined(_ABS_EAP_PAC_STORE_MESSAGE_H_)
       
    23 #define _ABS_EAP_PAC_STORE_MESSAGE_H_
       
    24 
       
    25 #include "eap_tools.h"
       
    26 #include "eap_am_export.h"
       
    27 
       
    28 class eap_method_settings_c;
       
    29 
       
    30 /// This class defines the interface the eap_core_c class
       
    31 /// will use with the partner class (lower layer).
       
    32 class EAP_EXPORT abs_eap_pac_store_message_c
       
    33 {
       
    34 private:
       
    35 	//--------------------------------------------------
       
    36 
       
    37 	//--------------------------------------------------
       
    38 protected:
       
    39 	//--------------------------------------------------
       
    40 
       
    41 	//--------------------------------------------------
       
    42 public:
       
    43 	//--------------------------------------------------
       
    44 
       
    45 	/**
       
    46 	 * The destructor of the abs_eap_core class does nothing special.
       
    47 	 */
       
    48 	virtual ~abs_eap_pac_store_message_c()
       
    49 	{
       
    50 	}
       
    51 
       
    52 	/**
       
    53 	 * The constructor of the abs_eap_core class does nothing special.
       
    54 	 */
       
    55 	abs_eap_pac_store_message_c()
       
    56 	{
       
    57 	}
       
    58 
       
    59 	virtual eap_status_e complete_open_pac_store(
       
    60 		const eap_status_e completion_status) = 0;
       
    61 
       
    62 	virtual eap_status_e complete_create_device_seed(
       
    63 		const eap_status_e completion_status) = 0;
       
    64 
       
    65 	virtual eap_status_e complete_is_master_key_present(
       
    66 	  bool is_present
       
    67 		,const eap_status_e completion_status) = 0;
       
    68 
       
    69 	virtual eap_status_e complete_is_master_key_and_password_matching(
       
    70 	  bool is_matching
       
    71 		,const eap_status_e completion_status) = 0;
       
    72 
       
    73 	virtual eap_status_e complete_create_and_save_master_key(
       
    74 		const eap_status_e completion_status) = 0;
       
    75 
       
    76 	virtual eap_status_e complete_compare_pac_store_password(
       
    77 		bool is_matching) = 0;
       
    78 
       
    79 	virtual eap_status_e complete_is_pacstore_password_present(
       
    80 		bool is_present) = 0;
       
    81 
       
    82 	virtual eap_status_e complete_set_pac_store_password(
       
    83 		const eap_status_e completion_status) = 0;
       
    84 
       
    85 	virtual eap_status_e complete_destroy_pac_store(
       
    86 		const eap_status_e completion_status) = 0;
       
    87 
       
    88 	//--------------------------------------------------
       
    89 }; // class abs_eap_pac_store_message_c
       
    90 
       
    91 #endif //#if !defined(_ABS_EAP_PAC_STORE_MESSAGE_H_)
       
    92 
       
    93 //--------------------------------------------------
       
    94 
       
    95 
       
    96 
       
    97 // End.