Searched refs:pubKeySelf (Results 1 – 4 of 4) sorted by relevance
39 params->pubKeySelf.length = PAKE_ED25519_KEY_PAIR_LEN; in InitStandardBindExchangeParams()40 params->pubKeySelf.val = (uint8_t *)HcMalloc(params->pubKeySelf.length, 0); in InitStandardBindExchangeParams()41 if (params->pubKeySelf.val == NULL) { in InitStandardBindExchangeParams()69 if (params->pubKeySelf.val != NULL) { in DestroyStandardBindExchangeParams()70 HcFree(params->pubKeySelf.val); in DestroyStandardBindExchangeParams()71 params->pubKeySelf.val = NULL; in DestroyStandardBindExchangeParams()129 res = pakeParams->baseParams.loader->exportPublicKey(&keyParams, &(exchangeParams->pubKeySelf)); in PackageAuthInfo()139 GOTO_ERR_AND_SET_RET(AddByteToJson(authInfoJson, FIELD_AUTH_PK, exchangeParams->pubKeySelf.val, in PackageAuthInfo()140 exchangeParams->pubKeySelf.length), res); in PackageAuthInfo()
81 exchangeParams.pubKeySelf.val = publicKey; in StandardExchangeTaskTest003()82 exchangeParams.pubKeySelf.length = PUB_KEY_LENGTH; in StandardExchangeTaskTest003()
87 exchangeParams.pubKeySelf.val = publicKey;88 exchangeParams.pubKeySelf.length = PUB_KEY_LENGTH;
28 Uint8Buff pubKeySelf; member