mirror of
https://github.com/openharmony/useriam_user_auth.git
synced 2026-07-21 01:25:22 -04:00
02da24beec
Signed-off-by: XiaoshuangMa <xiaoshuang.ma@huawei.com>
46 lines
1.6 KiB
C++
46 lines
1.6 KiB
C++
/*
|
|
* Copyright (c) 2022 Huawei Device Co., Ltd.
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef USERAUTH_CLIENT_H
|
|
#define USERAUTH_CLIENT_H
|
|
|
|
#include <iremote_object.h>
|
|
#include <mutex>
|
|
#include <singleton.h>
|
|
#include "userauth_defines.h"
|
|
#include "userauth_callback.h"
|
|
|
|
namespace OHOS {
|
|
namespace UserIAM {
|
|
namespace UserAuth {
|
|
class UserAuth : public DelayedRefSingleton<UserAuth> {
|
|
DECLARE_DELAYED_REF_SINGLETON(UserAuth);
|
|
|
|
public:
|
|
DISALLOW_COPY_AND_MOVE(UserAuth);
|
|
|
|
void GetProperty(const int32_t userId, const GetPropertyRequest &request,
|
|
std::shared_ptr<GetPropCallback> callback);
|
|
void SetProperty(const int32_t userId, const SetPropertyRequest &request,
|
|
std::shared_ptr<SetPropCallback> callback);
|
|
uint64_t AuthUser(const int32_t userId, const uint64_t challenge, const AuthType authType,
|
|
const AuthTrustLevel authTrustLevel, std::shared_ptr<UserAuthCallback> callback);
|
|
int32_t CancelAuth(const uint64_t contextId);
|
|
};
|
|
} // namespace UserAuth
|
|
} // namespace UserIAM
|
|
} // namespace OHOS
|
|
#endif // USERAUTH_CLIENT_H
|