You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by ka...@apache.org on 2007/09/27 13:27:41 UTC

svn commit: r579977 - in /webservices/rampart/trunk/c: rampart-bindist.sh samples/authn_provider/authn_provider.c src/omxmlsec/openssl/Makefile.am

Author: kaushalye
Date: Thu Sep 27 04:27:36 2007
New Revision: 579977

URL: http://svn.apache.org/viewvc?rev=579977&view=rev
Log:
1. Typo in authn provider sample
2. Modifications to the bin dist script


Modified:
    webservices/rampart/trunk/c/rampart-bindist.sh
    webservices/rampart/trunk/c/samples/authn_provider/authn_provider.c
    webservices/rampart/trunk/c/src/omxmlsec/openssl/Makefile.am

Modified: webservices/rampart/trunk/c/rampart-bindist.sh
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/rampart-bindist.sh?rev=579977&r1=579976&r2=579977&view=diff
==============================================================================
--- webservices/rampart/trunk/c/rampart-bindist.sh (original)
+++ webservices/rampart/trunk/c/rampart-bindist.sh Thu Sep 27 04:27:36 2007
@@ -58,6 +58,7 @@
 echo "Copy libraries"
 cp $AXIS2C_HOME/lib/liboxstokens.* $BIN_DIR/lib
 cp $AXIS2C_HOME/lib/libomxmlsec.* $BIN_DIR/lib
+cp $AXIS2C_HOME/lib/libomopenssl.* $BIN_DIR/lib
 
 echo "Copy samples"
 #copy samples

Modified: webservices/rampart/trunk/c/samples/authn_provider/authn_provider.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/authn_provider/authn_provider.c?rev=579977&r1=579976&r2=579977&view=diff
==============================================================================
--- webservices/rampart/trunk/c/samples/authn_provider/authn_provider.c (original)
+++ webservices/rampart/trunk/c/samples/authn_provider/authn_provider.c Thu Sep 27 04:27:36 2007
@@ -27,7 +27,7 @@
 #include <axutil_string.h>
 
 axis2_char_t* AXIS2_CALL
-ramaprt_authn_get_sample_password(const axutil_env_t *env,
+rampart_authn_get_sample_password(const axutil_env_t *env,
         const axis2_char_t *username)
 {
     /*First set pf password are for sample usernames*/
@@ -88,7 +88,7 @@
                 const axis2_char_t *password)
 {
     axis2_char_t *local_pw = NULL;
-    local_pw = ramaprt_authn_get_sample_password(env, username);
+    local_pw = rampart_authn_get_sample_password(env, username);
     AXIS2_LOG_INFO(env->log, "[rampart][authn_provider_sample] Load the password - default impl");
     if(local_pw){
         /*Compare passwords*/
@@ -117,7 +117,7 @@
 
     axis2_char_t *local_pw = NULL;
 
-    local_pw = ramaprt_authn_get_sample_password_from_file(env, username);
+    local_pw = rampart_authn_get_sample_password(env, username);
     if(local_pw){
         axis2_char_t *local_digest = NULL;
         /*Generate the digest*/

Modified: webservices/rampart/trunk/c/src/omxmlsec/openssl/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/src/omxmlsec/openssl/Makefile.am?rev=579977&r1=579976&r2=579977&view=diff
==============================================================================
--- webservices/rampart/trunk/c/src/omxmlsec/openssl/Makefile.am (original)
+++ webservices/rampart/trunk/c/src/omxmlsec/openssl/Makefile.am Thu Sep 27 04:27:36 2007
@@ -1,4 +1,4 @@
-noinst_LTLIBRARIES = libomopenssl.la
+lib_LTLIBRARIES =libomopenssl.la
 libomopenssl_la_SOURCES = cipher_ctx.c crypt.c rsa.c pkey.c util.c cipher_property.c digest.c x509.c pkcs12.c pem.c sign.c
 
 libomopenssl_la_LIBADD  = -lssl\