eapol/eapol_framework/eapol_common/am/include/abs_eap_am_pac_store.h
branchRCL_3
changeset 19 c74b3d9f6b9e
parent 18 bad0cc58d154
equal deleted inserted replaced
18:bad0cc58d154 19: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_AM_PAC_STORE_H_)
       
    23 #define _ABS_EAP_AM_PAC_STORE_H_
       
    24 
       
    25 #include "eap_tools.h"
       
    26 #include "eap_status.h"
       
    27 #include "eap_am_export.h"
       
    28 
       
    29 /** @file */
       
    30 
       
    31 /// This class is the common part of EAP message interface.
       
    32 /// This class is interface to the message creation and parsing function.
       
    33 class EAP_EXPORT abs_eap_am_pac_store_c
       
    34 {
       
    35 
       
    36 private:
       
    37 
       
    38 	// ----------------------------------------------------------------------
       
    39 
       
    40 public:
       
    41 
       
    42 	virtual ~abs_eap_am_pac_store_c()
       
    43 	{
       
    44 	}
       
    45 
       
    46 	virtual eap_status_e complete_open_pac_store(
       
    47 		const eap_status_e completion_status) = 0;
       
    48 
       
    49 	virtual eap_status_e complete_create_device_seed(
       
    50 		const eap_status_e completion_status) = 0;
       
    51 
       
    52 	virtual eap_status_e complete_is_master_key_present(
       
    53 	  const bool is_present) = 0;
       
    54 
       
    55 	virtual eap_status_e complete_is_master_key_and_password_matching(
       
    56 	  const bool is_matching) = 0;
       
    57 
       
    58 	virtual eap_status_e complete_create_and_save_master_key(
       
    59 		const eap_status_e completion_status) = 0;
       
    60 
       
    61 	virtual eap_status_e complete_compare_pac_store_password(
       
    62 		const bool is_matching) = 0;
       
    63 
       
    64 	virtual eap_status_e complete_is_pacstore_password_present(
       
    65 		const bool is_present) = 0;
       
    66 
       
    67 	virtual eap_status_e complete_set_pac_store_password(
       
    68 		const eap_status_e completion_status) = 0;
       
    69 
       
    70 	virtual eap_status_e complete_destroy_pac_store(
       
    71 		const eap_status_e completion_status) = 0;
       
    72 
       
    73 	// ----------------------------------------------------------------------
       
    74 };
       
    75 
       
    76 #endif //#if !defined(_ABS_EAP_AM_PAC_STORE_H_)
       
    77 
       
    78 
       
    79 //--------------------------------------------------
       
    80 // End