Home
last modified time | relevance | path

Searched refs:Decrypt (Results 1 – 7 of 7) sorted by relevance

/CTR-SDK-4.2.5/include/nn/crypto/
Dcrypto_RsaContext.h138 …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);
244 inline nn::Result RsaContext::Decrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLen… in Decrypt() function
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() function
251 return Decrypt(NULL, pDest, 0, pSrc, length); in Decrypt()
Dcrypto_Aes.h130 virtual void Decrypt(void* pDst, const void* pSrc) const in Decrypt() function
131 { return m_Impl.Decrypt(pDst, pSrc); } in Decrypt()
Dcrypto_CtrDecryptor.h168 static size_t Decrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, in Decrypt() function
172 return e.Decryptor::Decrypt(pDst, dstSize, pSrc, srcSize, pIv, ivSize, c); in Decrypt()
Dcrypto_PublicKeyContextBase.h42 virtual nn::Result Decrypt(void* pDest, const void* pSrc, size_t size) = 0;
Dcrypto_BlockCipher.h107 virtual void Decrypt(void* pDst, const void* pSrc) const = 0;
Dcrypto_Decryptor.h127 size_t Decrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize,
/CTR-SDK-4.2.5/include/nn/crypto/detail/
Dcrypto_AesImpl.h41 void Decrypt(void* pDst, const void* pSrc);