diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-08-11 08:10:01 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-08-11 08:10:01 +0000 |
commit | 77709b72a5d0e46aa1f6d05316f6be41b08b040b (patch) | |
tree | ef3a4a05d085c724ea188729cb5e8c33274387eb | |
parent | 6360bdafa56d83852164eaca9113c6c701e637af (diff) |
INTEGRATION: CWS encryption (1.6.256); FILE MERGED
2004/03/15 19:14:55 mhu 1.6.256.1: #115940# Added functions rtl_cipher...ARCFOUR() and rtl_digest_rawMD5().
-rw-r--r-- | sal/rtl/source/digest.c | 38 |
1 files changed, 35 insertions, 3 deletions
diff --git a/sal/rtl/source/digest.c b/sal/rtl/source/digest.c index f5545d83857c..01cd6128fd65 100644 --- a/sal/rtl/source/digest.c +++ b/sal/rtl/source/digest.c @@ -2,9 +2,9 @@ * * $RCSfile: digest.c,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: mhu $ $Date: 2001-05-06 15:15:50 $ + * last change: $Author: obo $ $Date: 2004-08-11 09:10:01 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -59,7 +59,7 @@ * ************************************************************************/ -#define _RTL_DIGEST_C_ "$Revision: 1.6 $" +#define _RTL_DIGEST_C_ "$Revision: 1.7 $" #ifndef _SAL_TYPES_H_ #include <sal/types.h> @@ -923,6 +923,38 @@ rtlDigestError SAL_CALL rtl_digest_getMD5 ( } /* + * rtl_digest_rawMD5. + */ +rtlDigestError SAL_CALL rtl_digest_rawMD5 ( + rtlDigest Digest, sal_uInt8 *pBuffer, sal_uInt32 nBufLen) +{ + DigestMD5_Impl *pImpl = (DigestMD5_Impl *)Digest; + sal_uInt8 *p = pBuffer; + + DigestContextMD5 *ctx; + + if ((pImpl == NULL) || (pBuffer == NULL)) + return rtl_Digest_E_Argument; + + if (!(pImpl->m_digest.m_algorithm == rtl_Digest_AlgorithmMD5)) + return rtl_Digest_E_Algorithm; + + if (!(pImpl->m_digest.m_length <= nBufLen)) + return rtl_Digest_E_BufferSize; + + ctx = &(pImpl->m_context); + + /* __rtl_digest_endMD5 (ctx); *//* not finalized */ + RTL_DIGEST_LTOC (ctx->m_nA, p); + RTL_DIGEST_LTOC (ctx->m_nB, p); + RTL_DIGEST_LTOC (ctx->m_nC, p); + RTL_DIGEST_LTOC (ctx->m_nD, p); + __rtl_digest_initMD5 (ctx); + + return rtl_Digest_E_None; +} + +/* * rtl_digest_destroyMD5. */ void SAL_CALL rtl_digest_destroyMD5 (rtlDigest Digest) |