Home
last modified time | relevance | path

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

/CTR-SDK-4.2.8-20130828/include/nn/crypto/
Dcrypto_RsaContext.h154 …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);
234 inline nn::Result RsaContext::Encrypt(void* pDest, size_t destSize, const void* pSrc, size_t srcLen… in Encrypt() function
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() function
241 return Encrypt(NULL, pDest, 0, pSrc, length); in Encrypt()
Dcrypto_Aes.h115 virtual void Encrypt(void* pDst, const void* pSrc) const in Encrypt() function
116 { return m_Impl.Encrypt(pDst, pSrc); } in Encrypt()
Dcrypto_CtrEncryptor.h167 static size_t Encrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, in Encrypt() function
171 return e.Encryptor::Encrypt(pDst, dstSize, pSrc, srcSize, pIv, ivSize, c); in Encrypt()
Dcrypto_PublicKeyContextBase.h49 virtual nn::Result Encrypt(void* pDest, const void* pSrc, size_t size) = 0;
Dcrypto_BlockCipher.h91 virtual void Encrypt(void* pDst, const void* pSrc) const = 0;
Dcrypto_Encryptor.h132 size_t Encrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize,
/CTR-SDK-4.2.8-20130828/include/nn/crypto/detail/
Dcrypto_AesImpl.h40 void Encrypt(void* pDst, const void* pSrc);