Lines Matching refs:Digest
101 rtlDigest Digest = (rtlDigest)NULL; in rtl_digest_create() local
105 Digest = rtl_digest_createMD2(); in rtl_digest_create()
109 Digest = rtl_digest_createMD5(); in rtl_digest_create()
113 Digest = rtl_digest_createSHA(); in rtl_digest_create()
117 Digest = rtl_digest_createSHA1(); in rtl_digest_create()
121 Digest = rtl_digest_createHMAC_MD5(); in rtl_digest_create()
125 Digest = rtl_digest_createHMAC_SHA1(); in rtl_digest_create()
131 return Digest; in rtl_digest_create()
137 rtlDigestAlgorithm SAL_CALL rtl_digest_queryAlgorithm (rtlDigest Digest) in rtl_digest_queryAlgorithm() argument
139 Digest_Impl *pImpl = (Digest_Impl *)Digest; in rtl_digest_queryAlgorithm()
149 sal_uInt32 SAL_CALL rtl_digest_queryLength (rtlDigest Digest) in rtl_digest_queryLength() argument
151 Digest_Impl *pImpl = (Digest_Impl *)Digest; in rtl_digest_queryLength()
162 rtlDigest Digest, const sal_uInt8 *pData, sal_uInt32 nDatLen) in rtl_digest_init() argument
164 Digest_Impl *pImpl = (Digest_Impl *)Digest; in rtl_digest_init()
168 return pImpl->m_init (Digest, pData, nDatLen); in rtl_digest_init()
179 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_update() argument
181 Digest_Impl *pImpl = (Digest_Impl *)Digest; in rtl_digest_update()
183 return pImpl->m_update (Digest, pData, nDatLen); in rtl_digest_update()
192 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_get() argument
194 Digest_Impl *pImpl = (Digest_Impl *)Digest; in rtl_digest_get()
196 return pImpl->m_get (Digest, pBuffer, nBufLen); in rtl_digest_get()
204 void SAL_CALL rtl_digest_destroy (rtlDigest Digest) in rtl_digest_destroy() argument
206 Digest_Impl *pImpl = (Digest_Impl *)Digest; in rtl_digest_destroy()
208 pImpl->m_delete (Digest); in rtl_digest_destroy()
407 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_updateMD2() argument
409 DigestMD2_Impl *pImpl = (DigestMD2_Impl *)Digest; in rtl_digest_updateMD2()
465 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_getMD2() argument
467 DigestMD2_Impl *pImpl = (DigestMD2_Impl *)Digest; in rtl_digest_getMD2()
494 void SAL_CALL rtl_digest_destroyMD2 (rtlDigest Digest) in rtl_digest_destroyMD2() argument
496 DigestMD2_Impl *pImpl = (DigestMD2_Impl *)Digest; in rtl_digest_destroyMD2()
772 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_updateMD5() argument
774 DigestMD5_Impl *pImpl = (DigestMD5_Impl *)Digest; in rtl_digest_updateMD5()
844 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_getMD5() argument
846 DigestMD5_Impl *pImpl = (DigestMD5_Impl *)Digest; in rtl_digest_getMD5()
876 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_rawMD5() argument
878 DigestMD5_Impl *pImpl = (DigestMD5_Impl *)Digest; in rtl_digest_rawMD5()
907 void SAL_CALL rtl_digest_destroyMD5 (rtlDigest Digest) in rtl_digest_destroyMD5() argument
909 DigestMD5_Impl *pImpl = (DigestMD5_Impl *)Digest; in rtl_digest_destroyMD5()
1249 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_updateSHA() argument
1251 DigestSHA_Impl *pImpl = (DigestSHA_Impl *)Digest; in rtl_digest_updateSHA()
1321 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_getSHA() argument
1323 DigestSHA_Impl *pImpl = (DigestSHA_Impl *)Digest; in rtl_digest_getSHA()
1353 void SAL_CALL rtl_digest_destroySHA (rtlDigest Digest) in rtl_digest_destroySHA() argument
1355 DigestSHA_Impl *pImpl = (DigestSHA_Impl *)Digest; in rtl_digest_destroySHA()
1437 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_updateSHA1() argument
1439 DigestSHA_Impl *pImpl = (DigestSHA_Impl *)Digest; in rtl_digest_updateSHA1()
1509 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_getSHA1() argument
1511 DigestSHA_Impl *pImpl = (DigestSHA_Impl *)Digest; in rtl_digest_getSHA1()
1541 void SAL_CALL rtl_digest_destroySHA1 (rtlDigest Digest) in rtl_digest_destroySHA1() argument
1543 DigestSHA_Impl *pImpl = (DigestSHA_Impl *)Digest; in rtl_digest_destroySHA1()
1678 rtlDigest Digest, const sal_uInt8 *pKeyData, sal_uInt32 nKeyLen) in rtl_digest_initHMAC_MD5() argument
1680 DigestHMAC_MD5_Impl *pImpl = (DigestHMAC_MD5_Impl*)Digest; in rtl_digest_initHMAC_MD5()
1716 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_updateHMAC_MD5() argument
1718 DigestHMAC_MD5_Impl *pImpl = (DigestHMAC_MD5_Impl*)Digest; in rtl_digest_updateHMAC_MD5()
1737 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_getHMAC_MD5() argument
1739 DigestHMAC_MD5_Impl *pImpl = (DigestHMAC_MD5_Impl*)Digest; in rtl_digest_getHMAC_MD5()
1770 void SAL_CALL rtl_digest_destroyHMAC_MD5 (rtlDigest Digest) in rtl_digest_destroyHMAC_MD5() argument
1772 DigestHMAC_MD5_Impl *pImpl = (DigestHMAC_MD5_Impl*)Digest; in rtl_digest_destroyHMAC_MD5()
1907 rtlDigest Digest, const sal_uInt8 *pKeyData, sal_uInt32 nKeyLen) in rtl_digest_initHMAC_SHA1() argument
1909 DigestHMAC_SHA1_Impl *pImpl = (DigestHMAC_SHA1_Impl*)Digest; in rtl_digest_initHMAC_SHA1()
1945 rtlDigest Digest, const void *pData, sal_uInt32 nDatLen) in rtl_digest_updateHMAC_SHA1() argument
1947 DigestHMAC_SHA1_Impl *pImpl = (DigestHMAC_SHA1_Impl*)Digest; in rtl_digest_updateHMAC_SHA1()
1966 rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) in rtl_digest_getHMAC_SHA1() argument
1968 DigestHMAC_SHA1_Impl *pImpl = (DigestHMAC_SHA1_Impl*)Digest; in rtl_digest_getHMAC_SHA1()
1999 void SAL_CALL rtl_digest_destroyHMAC_SHA1 (rtlDigest Digest) in rtl_digest_destroyHMAC_SHA1() argument
2001 DigestHMAC_SHA1_Impl *pImpl = (DigestHMAC_SHA1_Impl*)Digest; in rtl_digest_destroyHMAC_SHA1()