Home
last modified time | relevance | path

Searched refs:pinLen (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/security/device_auth/services/identity_manager/src/
H A Didentity_pin.c317 uint32_t pinLen = HcStrlen(pinCode); in GetSharedSecretForPinInPake() local
318 if (pinLen < PIN_CODE_LEN_SHORT) { in GetSharedSecretForPinInPake()
322 sharedSecret->val = (uint8_t *)HcMalloc(pinLen, 0); in GetSharedSecretForPinInPake()
327 if (memcpy_s(sharedSecret->val, pinLen, pinCode, pinLen) != HC_SUCCESS) { in GetSharedSecretForPinInPake()
332 sharedSecret->length = pinLen; in GetSharedSecretForPinInPake()
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/wlan_wpa_v1_0/c_target/wlan/wpa/v1_0/
H A Dwpa_types.h.txt263 uint32_t pinLen;
H A Dwpa_types.c.txt2485 if (!WritePodArray(data, dataBlock->pin, sizeof(uint8_t), dataBlock->pinLen)) {
2544 dataBlock->pinLen = pinCpLen;
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/
H A Dwifi_hdi_wpa_p2p_impl.c1061 wpsParam.pinLen = HDI_PIN_LEN; in HdiP2pConnect()
/ohos5.0/drivers/peripheral/wlan/wpa/interfaces/hdi_service/service_common/
H A Dwpa_p2p_cmd.c982 if (memcpy_s(pin, CMD_SIZE, info->pin, info->pinLen) != EOK) { in WpaInterfaceP2pConnect()