eapol/eapol_framework/eapol_common/am/include/abs_eap_am_sim_algorithm.h
changeset 0 c8830336c852
child 2 1c7bc153c08e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eapol/eapol_framework/eapol_common/am/include/abs_eap_am_sim_algorithm.h	Thu Dec 17 08:47:43 2009 +0200
@@ -0,0 +1,81 @@
+/*
+* Copyright (c) 2001-2006 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  EAP and WLAN authentication protocols.
+*
+*/
+
+
+
+
+#if !defined(_ABS_SIM_ALGORITHM_H_)
+#define _ABS_SIM_ALGORITHM_H_
+
+#include "eap_tools.h"
+#include "eap_variable_data.h"
+#include "abs_eap_am_tools.h"
+#include "eap_am_tools.h"
+#include "eap_am_export.h"
+#include "eap_sim_triplets.h"
+
+enum sim_algorithm_e
+{
+	sim_algorithm_none,
+	sim_algorithm_nokia_test_network_xor,
+	sim_algorithm_tls_prf_with_shared_secret,
+};
+
+
+/// This class is implements Nokia test network SIM algorithm.
+class EAP_EXPORT abs_eap_am_sim_algorithm_c
+{
+private:
+	//--------------------------------------------------
+
+	virtual void set_is_valid() = 0;
+
+	//--------------------------------------------------
+protected:
+	//--------------------------------------------------
+
+	//--------------------------------------------------
+public:
+	//--------------------------------------------------
+
+	// 
+	virtual ~abs_eap_am_sim_algorithm_c(){};
+
+	virtual bool get_is_valid() = 0;
+
+	virtual eap_status_e set_simulator_sim_ki(const eap_variable_data_c * const simulator_sim_ki) = 0;
+
+	virtual eap_status_e generate_kc_sres(
+		const sim_algorithm_e sim_algorithm,
+		const u8_t * const rand,
+		const u32_t rand_length,
+		u8_t * const kc_sres,
+		const u32_t kc_sres_length) = 0;
+
+	//--------------------------------------------------
+}; // class abs_eap_am_sim_algorithm_c
+
+
+/** @file */ 
+
+#endif //#if !defined(_ABS_SIM_ALGORITHM_H_)
+
+//--------------------------------------------------
+
+
+
+// End.