Searched refs:engineGenerateSecret (Results 1 – 9 of 9) sorted by relevance
/ohos5.0/base/security/crypto_framework/frameworks/spi/ |
H A D | key_agreement_spi.h | 29 HcfResult (*engineGenerateSecret)(HcfKeyAgreementSpi *self, HcfPriKey *priKey, member
|
/ohos5.0/base/security/crypto_framework/test/unittest/src/ |
H A D | crypto_ecc_key_agreement_test.cpp | 520 res = spiObj->engineGenerateSecret((HcfKeyAgreementSpi *)&obj, 540 res = spiObj->engineGenerateSecret(spiObj, (HcfPriKey *)&obj, ecc256KeyPair_->pubKey, &out); 559 res = spiObj->engineGenerateSecret(spiObj, ecc256KeyPair_->priKey, (HcfPubKey *)&obj, &out); 612 res = spiObj->engineGenerateSecret(spiObj, ecc256KeyPair_->priKey, nullptr, &out); 631 res = spiObj->engineGenerateSecret(nullptr, ecc256KeyPair_->priKey, nullptr, &out);
|
H A D | crypto_x25519_key_agreement_test.cpp | 265 …res = spiObj->engineGenerateSecret((HcfKeyAgreementSpi *)&g_obj, x25519KeyPair_->priKey, x25519Key… 269 res = spiObj->engineGenerateSecret(spiObj, (HcfPriKey *)&g_obj, x25519KeyPair_->pubKey, &out); 272 res = spiObj->engineGenerateSecret(spiObj, x25519KeyPair_->priKey, (HcfPubKey *)&g_obj, &out);
|
H A D | crypto_dh_key_agreement_test.cpp | 386 …res = spiObj->engineGenerateSecret((HcfKeyAgreementSpi *)&g_obj, dh1536KeyPair_->priKey, dh1536Key… 389 res = spiObj->engineGenerateSecret(spiObj, (HcfPriKey *)&g_obj, dh1536KeyPair_->pubKey, &out); 391 res = spiObj->engineGenerateSecret(spiObj, dh1536KeyPair_->priKey, (HcfPubKey *)&g_obj, &out);
|
H A D | crypto_ecc_key_agreement_by_spec_test.cpp | 649 res = spiObj->engineGenerateSecret((HcfKeyAgreementSpi *)&obj, 665 res = spiObj->engineGenerateSecret(spiObj, (HcfPriKey *)&obj, ecc256KeyPair_->pubKey, &out); 680 res = spiObj->engineGenerateSecret(spiObj, ecc256KeyPair_->priKey, (HcfPubKey *)&obj, &out);
|
/ohos5.0/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/key_agreement/src/ |
H A D | dh_openssl.c | 98 returnImpl->base.engineGenerateSecret = EngineGenerateSecret; in HcfKeyAgreementSpiDhCreate()
|
H A D | x25519_openssl.c | 97 returnImpl->base.engineGenerateSecret = EngineGenerateSecret; in HcfKeyAgreementSpiX25519Create()
|
H A D | ecdh_openssl.c | 137 returnImpl->base.engineGenerateSecret = EngineGenerateSecret; in HcfKeyAgreementSpiEcdhCreate()
|
/ohos5.0/base/security/crypto_framework/frameworks/crypto_operation/ |
H A D | key_agreement.c | 179 return ((HcfKeyAgreementImpl *)self)->spiObj->engineGenerateSecret( in GenerateSecret()
|