| /CTR-SDK-4.2.8-20130828/include/nn/crypto/ |
| D | crypto_RsaContext.h | 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); [all …]
|
| D | crypto_Cipher.h | 69 void EncryptAes128Ctr(void* pDst, const void* pSrc, size_t srcSize, const void* pKey); 89 void DecryptAes128Ctr(void* pDst, const void* pSrc, size_t srcSize, const void* pKey); 115 … void EncryptAndGenerateAes128Ccm(void* pDst, const void* pSrc, size_t srcSize, const void* pKey); 139 bool DecryptAndVerifyAes128Ccm(void* pDst, const void* pSrc, size_t srcSize, const void* pKey);
|
| D | crypto_Aes.h | 115 virtual void Encrypt(void* pDst, const void* pSrc) const in Encrypt() argument 116 { return m_Impl.Encrypt(pDst, pSrc); } in Encrypt() 130 virtual void Decrypt(void* pDst, const void* pSrc) const in Decrypt() argument 131 { return m_Impl.Decrypt(pDst, pSrc); } in Decrypt()
|
| D | crypto_CtrEncryptor.h | 121 virtual size_t Update(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) in Update() argument 122 { return m_Impl.Update(pDst, dstSize, pSrc, srcSize); } in Update() 167 static size_t Encrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, in Encrypt() argument 171 return e.Encryptor::Encrypt(pDst, dstSize, pSrc, srcSize, pIv, ivSize, c); in Encrypt()
|
| D | crypto_CtrDecryptor.h | 121 virtual size_t Update(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) in Update() argument 122 { return m_Impl.Update(pDst, dstSize, pSrc, srcSize); } in Update() 168 static size_t Decrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, in Decrypt() argument 172 return e.Decryptor::Decrypt(pDst, dstSize, pSrc, srcSize, pIv, ivSize, c); in Decrypt()
|
| D | crypto_CcmDecryptor.h | 139 virtual void UpdateAdata(const void* pSrc, size_t size) in UpdateAdata() argument 140 { return m_Impl.UpdateAdata(pSrc, size); } in UpdateAdata() 161 virtual size_t UpdateCdata(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) in UpdateCdata() argument 162 { return m_Impl.UpdateCdata(pDst, dstSize, pSrc, srcSize); } in UpdateCdata()
|
| D | crypto_CcmEncryptor.h | 142 virtual void UpdateAdata(const void* pSrc, size_t size) in UpdateAdata() argument 143 { return m_Impl.UpdateAdata(pSrc, size); } in UpdateAdata() 164 virtual size_t UpdatePdata(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) in UpdatePdata() argument 165 { return m_Impl.UpdatePdata(pDst, dstSize, pSrc, srcSize); } in UpdatePdata()
|
| D | crypto_PublicKeyContextBase.h | 42 virtual nn::Result Decrypt(void* pDest, const void* pSrc, size_t size) = 0; 49 virtual nn::Result Encrypt(void* pDest, const void* pSrc, size_t size) = 0;
|
| D | crypto_BlockCipher.h | 91 virtual void Encrypt(void* pDst, const void* pSrc) const = 0; 107 virtual void Decrypt(void* pDst, const void* pSrc) const = 0;
|
| D | crypto_Decryptor.h | 100 virtual size_t Update(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) = 0; 127 size_t Decrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize,
|
| D | crypto_Encryptor.h | 105 virtual size_t Update(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) = 0; 132 size_t Encrypt(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize,
|
| D | crypto_AuthenticatedDecryptor.h | 73 virtual void UpdateAdata(const void* pSrc, size_t size) = 0; 131 virtual size_t UpdateCdata(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) = 0;
|
| D | crypto_AuthenticatedEncryptor.h | 73 virtual void UpdateAdata(const void* pSrc, size_t size) = 0; 130 virtual size_t UpdatePdata(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize) = 0;
|
| /CTR-SDK-4.2.8-20130828/sources/libraries/cx/ |
| D | cx_Uncompression.cpp | 117 const u8 *pSrc = static_cast<const u8*>(srcp); in UncompressRL() local 119 u32 destCount = internal::Read32Le(pSrc) >> 8; in UncompressRL() 120 pSrc += 4; in UncompressRL() 124 destCount = internal::Read32Le(pSrc); in UncompressRL() 125 pSrc += 4; in UncompressRL() 130 u8 flags = *pSrc++; in UncompressRL() 144 *pDst++ = *pSrc++; in UncompressRL() 159 srcTmp = *pSrc++; in UncompressRL() 199 const u8* pSrc = static_cast<const u8*>(srcp); in UncompressLZ() local 201 u32 destCount = internal::Read32Le(pSrc) >> 8; in UncompressLZ() [all …]
|
| D | cx_SecureUncompression.cpp | 99 const u8 *pSrc = static_cast<const u8*>(srcp); in SecureUncompressRL() local 101 u8 compType = *pSrc; in SecureUncompressRL() 102 u32 destCount = internal::Read32Le(pSrc) >> 8; in SecureUncompressRL() 118 pSrc += 4; in SecureUncompressRL() 127 destCount = internal::Read32Le(pSrc); in SecureUncompressRL() 128 pSrc += 4; in SecureUncompressRL() 134 u8 flags = *pSrc++; in SecureUncompressRL() 158 *pDst++ = *pSrc++; in SecureUncompressRL() 173 srcTmp = *pSrc++; in SecureUncompressRL() 226 const u8* pSrc = static_cast<const u8*>(srcp); in SecureUncompressLZ() local [all …]
|
| /CTR-SDK-4.2.8-20130828/include/nn/y2r/CTR/ |
| D | y2r_Api.h | 52 void SetSendingY( u32 pSrc, size_t imageSize, s16 transferUnit, s16 transferStride ); 53 void SetSendingU( u32 pSrc, size_t imageSize, s16 transferUnit, s16 transferStride ); 54 void SetSendingV( u32 pSrc, size_t imageSize, s16 transferUnit, s16 transferStride ); 55 void SetSendingYuv( u32 pSrc, size_t imageSize, s16 transferUnit, s16 transferStride ); 269 …inline void SetSendingY( const void* pSrc, size_t imageSize, s16 transferUnit, s16 transferStride … 271 detail::SetSendingY(reinterpret_cast<u32>(pSrc), imageSize, transferUnit, transferStride); 282 …inline void SetSendingU( const void* pSrc, size_t imageSize, s16 transferUnit, s16 transferStride … 284 detail::SetSendingU(reinterpret_cast<u32>(pSrc), imageSize, transferUnit, transferStride); 295 …inline void SetSendingV( const void* pSrc, size_t imageSize, s16 transferUnit, s16 transferStride … 297 detail::SetSendingV(reinterpret_cast<u32>(pSrc), imageSize, transferUnit, transferStride); [all …]
|
| /CTR-SDK-4.2.8-20130828/include/nn/cx/ |
| D | cx_Uncompression.h | 114 size_t GetGzipUncompressedSize(const void* pSrc, size_t srcSize); 240 s32 UncompressDeflate(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, void* pWork ); 257 s32 UncompressGzip (void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, void* pWork ); 274 s32 UncompressZlib (void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, void* pWork );
|
| D | cx_Compression.h | 133 s32 CompressDeflate( void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, void* pWork ); 153 s32 CompressGzip ( void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, void* pWork ); 173 s32 CompressZlib ( void* pDst, size_t dstSize, const void* pSrc, size_t srcSize, void* pWork );
|
| /CTR-SDK-4.2.8-20130828/include/nn/enc/ |
| D | enc_Api.h | 45 u8* pDst, s32* pDstSize, const u16* pSrc, s32* pSrcSize 68 u16* pDst, s32* pDstSize, const u8* pSrc, s32* pSrcSize
|
| D | enc_Unicode.h | 27 u8* pDst, s32* pDstSize, const u16* pSrc, s32* pSrcSize, BreakType brType 31 u16* pDst, s32* pDstSize, const u8* pSrc, s32* pSrcSize, BreakType brType
|
| /CTR-SDK-4.2.8-20130828/include/nn/crypto/detail/ |
| D | crypto_CcmMode.h | 47 void UpdateAdata(const void* pSrc, size_t size); 49 size_t UpdatePdata(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize); 51 size_t UpdateCdata(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize);
|
| D | crypto_AesImpl.h | 40 void Encrypt(void* pDst, const void* pSrc); 41 void Decrypt(void* pDst, const void* pSrc);
|
| D | crypto_CtrMode.h | 44 size_t Update(void* pDst, size_t dstSize, const void* pSrc, size_t srcSize); 48 static void ProcessBlocks(void* pDst, void* pCounter, const void* pSrc,
|
| /CTR-SDK-4.2.8-20130828/include/nn/util/ |
| D | util_Base64.h | 82 static nn::Result ToBase64String(const void* pSrc, size_t sizeSrc, char* pDst, size_t sizeDst); 94 static nn::Result FromBase64String(const char* pSrc, void* pDst, size_t sizeDst, size_t* pNum);
|
| /CTR-SDK-4.2.8-20130828/sources/libraries/test/ |
| D | test_XmlOutput.cpp | 62 const char* pSrc = string; in ConvertToXmlString() local 64 while(*pSrc != '\0') in ConvertToXmlString() 69 if(*pSrc == specials[index]) in ConvertToXmlString() 86 *pDst++ = *pSrc; in ConvertToXmlString() 88 pSrc++; in ConvertToXmlString()
|