1 /* 2 * Copyright (c) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef AUTH_IDENTITY_SERVICE_ADAPTER_H 17 #define AUTH_IDENTITY_SERVICE_ADAPTER_H 18 19 #include "auth_hichain.h" 20 #include "device_auth.h" 21 #include "softbus_common.h" 22 23 #ifdef __cplusplus 24 #if __cplusplus 25 extern "C" { 26 #endif 27 #endif 28 29 typedef struct { 30 int32_t credIdType; 31 int32_t subject; 32 char udid[UDID_BUF_LEN]; 33 char userId[MAX_ACCOUNT_HASH_LEN]; 34 } SoftBusCredInfo; 35 36 int32_t IdServiceRegCredMgr(void); 37 void IdServiceUnRegCredMgr(void); 38 bool IdServiceIsPotentialTrustedDevice(const char *udidHash, const char *accountIdHash, bool isSameAccount); 39 40 int32_t IdServiceQueryCredential(int32_t userId, const char *udidHash, const char *accountidHash, 41 bool isSameAccount, char **credList); 42 int32_t AuthIdServiceQueryCredential(int32_t peerUserId, const char *udidHash, const char *accountidHash, 43 bool isSameAccount, char **credList); 44 char *IdServiceGenerateAuthParam(HiChainAuthParam *hiChainParam); 45 int32_t IdServiceAuthCredential(int32_t userId, int64_t authReqId, const char *authParams, 46 const DeviceAuthCallback *cb); 47 int32_t IdServiceProcessCredData(int64_t authSeq, const uint8_t *data, uint32_t len, DeviceAuthCallback *cb); 48 char *IdServiceGetCredIdFromCredList(int32_t userId, const char *credList); 49 void IdServiceDestroyCredentialList(char **returnData); 50 51 #ifdef __cplusplus 52 #if __cplusplus 53 } 54 #endif 55 #endif 56 #endif /* AUTH_IDENTITY_SERVICE_ADAPTER_H */