dmServerAuthentication.h revision 3fa3e56afc259ce982ca4f8b51be7378b7e2021e
1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef DMSERVERAUTHENTICATION_H
18#define DMSERVERAUTHENTICATION_H
19
20/*==================================================================================================
21
22    Header Name: dmServerAuthentication.h
23
24    General Description: Declaration of DMServerAuthentication class.
25
26==================================================================================================*/
27
28#include "syncml_dm_data_types.h"
29#include "dmbuffer.h"
30
31/*==================================================================================================
32                                 CLASSES DECLARATION
33==================================================================================================*/
34class DMServerAuthentication
35{
36public:
37    SYNCML_DM_RET_STATUS_T AuthenticateServer(SYNCML_DM_AuthContext_T& AuthContext);
38
39private:
40    void CheckCredentials(SYNCML_DM_AuthContext_T& AuthContext,const DMString& password, const DMBuffer& data, BOOLEAN bDecodeNonce);
41
42    DMString GetPreferredProfilePath(const DMString& strAccName, const DMMap<DMString,UINT32>& dmAuthProfiles);
43
44    SYNCML_DM_RET_STATUS_T TryProfile_1_1(const DMString& strAccName, const DMString& strProfilePath, SYNCML_DM_AuthContext_T& AuthContext);
45
46    SYNCML_DM_RET_STATUS_T TryProfile_1_2(const DMString& strAccName, const DMString& strProfilePath, SYNCML_DM_AuthContext_T& AuthContext);
47};
48#endif
49