Lines Matching refs:pSrc
138 …nn::Result Decrypt(size_t* pDecrptLength, void* pDest, size_t destSize, const void* pSrc, size_t s…
140 …nn::Result Decrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLength = SIZE_STRING_…
141 virtual nn::Result Decrypt(void* pDest, const void* pSrc, size_t length);
154 …nn::Result Encrypt(size_t* pEncryptLength, void* pDest, size_t destSize, const void* pSrc, size_t …
156 …nn::Result Encrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLength = SIZE_STRING_…
157 virtual nn::Result Encrypt(void* pDest, const void* pSrc, size_t length);
170 …nn::Result Sign(size_t* pSignLength, void* pDest, size_t destSize, const void* pSrc, size_t srcLen…
172 …nn::Result Sign(void* pDest, size_t destSize, const void* pSrc, size_t srcLength = SIZE_STRING_LEN…
184 nn::Result SignSha256(size_t* pSignLength, void* pDest, size_t destSize, const void* pSrc);
186 nn::Result SignSha256(void* pDest, size_t destSize, const void* pSrc);
198 nn::Result Verify(const void* pSrc, size_t srcLength, const void* pSign, size_t signLength);
209 nn::Result VerifySha256(const void* pSrc, const void* pSign, size_t signLength);
223 nn::Result VerifySha1(const void* pSrc, const void* pSign, size_t signLength);
234 inline nn::Result RsaContext::Encrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLen… in Encrypt() argument
236 return Encrypt(NULL, pDest, destSize, pSrc, srcLength); in Encrypt()
239 inline nn::Result RsaContext::Encrypt(void* pDest, const void* pSrc, size_t length) in Encrypt() argument
241 return Encrypt(NULL, pDest, 0, pSrc, length); in Encrypt()
244 inline nn::Result RsaContext::Decrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLen… in Decrypt() argument
246 return Decrypt(NULL, pDest, destSize, pSrc, srcLength); in Decrypt()
249 inline nn::Result RsaContext::Decrypt(void* pDest, const void* pSrc, size_t length) in Decrypt() argument
251 return Decrypt(NULL, pDest, 0, pSrc, length); in Decrypt()
254 inline nn::Result RsaContext::Sign(void* pDest, size_t destSize, const void* pSrc, size_t srcLength) in Sign() argument
256 return Sign(NULL, pDest, destSize, pSrc, srcLength); in Sign()
259 inline nn::Result RsaContext::SignSha256(void* pDest, size_t destSize, const void* pSrc) in SignSha256() argument
261 return SignSha256(NULL, pDest, destSize, pSrc); in SignSha256()