You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by bl...@apache.org on 2006/03/07 09:47:14 UTC

svn commit: r383822 - /xml/security/trunk/c/src/enc/XSECCryptoUtils.cpp

Author: blautenb
Date: Tue Mar  7 00:47:04 2006
New Revision: 383822

URL: http://svn.apache.org/viewcvs?rev=383822&view=rev
Log:
Call the SASL passphrase check for authentication as well as for key generation

Modified:
    xml/security/trunk/c/src/enc/XSECCryptoUtils.cpp

Modified: xml/security/trunk/c/src/enc/XSECCryptoUtils.cpp
URL: http://svn.apache.org/viewcvs/xml/security/trunk/c/src/enc/XSECCryptoUtils.cpp?rev=383822&r1=383821&r2=383822&view=diff
==============================================================================
--- xml/security/trunk/c/src/enc/XSECCryptoUtils.cpp (original)
+++ xml/security/trunk/c/src/enc/XSECCryptoUtils.cpp Tue Mar  7 00:47:04 2006
@@ -257,7 +257,7 @@
 
 	// Clean the input
 	safeBuffer sb;
-	int l = CleanXKMSPassPhrase(input, inputLen, sb);
+	int l = SASLCleanXKMSPassPhrase(input, inputLen, sb);
 
 	h->hash((unsigned char *) sb.rawBuffer(), l);
 	return h->finish(output, maxOutputLen);