Home
last modified time | relevance | path

Searched refs:getCipherSpecString (Results 1 – 6 of 6) sorted by relevance

/base/security/crypto_framework/frameworks/spi/
Dcipher_factory_spi.h41 …HcfResult (*getCipherSpecString)(HcfCipherGeneratorSpi *self, CipherSpecItem item, char **returnSt… member
/base/security/crypto_framework/interfaces/innerkits/crypto_operation/
Dcipher.h68 HcfResult (*getCipherSpecString)(HcfCipher *self, CipherSpecItem item, char **returnString); member
/base/security/crypto_framework/test/unittest/src/
Dcrypto_rsa_cipher_test.cpp1305 res = cipher->getCipherSpecString(cipher, OAEP_MD_NAME_STR, &returnMdName);
1309 res = cipher->getCipherSpecString(cipher, OAEP_MGF_NAME_STR, &returnMgF1Name);
1313 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_MD_STR, &returnMgf1MdName);
1350 res = cipher->getCipherSpecString(cipher, OAEP_MD_NAME_STR, &returnMdName);
1354 res = cipher->getCipherSpecString(cipher, OAEP_MGF_NAME_STR, &returnMgF1Name);
1358 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_MD_STR, &returnMgf1MdName);
1427 res = cipher->getCipherSpecString(cipher, OAEP_MD_NAME_STR, &returnMdName);
1431 res = cipher->getCipherSpecString(cipher, OAEP_MGF_NAME_STR, &returnMgF1Name);
1435 res = cipher->getCipherSpecString(cipher, OAEP_MGF1_MD_STR, &returnMgf1MdName);
1473 res = cipher->getCipherSpecString(cipher, OAEP_MD_NAME_STR, &returnMdName);
[all …]
/base/security/crypto_framework/frameworks/crypto_operation/
Dcipher.c251 return impl->spiObj->getCipherSpecString(impl->spiObj, item, returnString); in GetCipherSpecString()
323 cipher->super.getCipherSpecString = GetCipherSpecString; in InitCipher()
/base/security/crypto_framework/plugin/openssl_plugin/crypto_operation/cipher/src/
Dcipher_rsa_openssl.c533 returnImpl->super.getCipherSpecString = GetRsaCipherSpecString; in HcfCipherRsaCipherSpiCreate()
/base/security/crypto_framework/frameworks/js/napi/crypto/src/
Dnapi_cipher.cpp669 HcfResult res = cipher->getCipherSpecString(cipher, item, &returnString); in GetCipherSpecString()