<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Externally logging into WWForums?</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Externally logging into WWForums?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 13 Apr 2026 05:27:36 +0000</pubDate>
  <lastBuildDate>Fri, 10 Jun 2005 16:38:52 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=14900</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Externally logging into WWForums? : On a wild hare today I decided...]]></title>
   <link>https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post84902.html#84902</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20348">eXeterTBC</a><br /><strong>Subject:</strong> 14900<br /><strong>Posted:</strong> 10&nbsp;June&nbsp;2005 at 4:38pm<br /><br />On a wild hare today I decided to port the One way hash include to a VBClassLib and compile it.&nbsp; Amazing enough it worked as is with onlyone change.&nbsp; Referenced it in a quickie C# windows app and I amnow correctly generating the password hash in C# the language I waswanting to use in the first place.&nbsp; Thanks for the suggestions.<br><br>Here is the WWFCryptoLib I created in case anyone else finds use for it.<br><a href="http://lock.indyres.com/WWFCryptoLib.zip" target="_blank">http://lock.indyres.com/WWFCryptoLib.zip</a><br>]]>
   </description>
   <pubDate>Fri, 10 Jun 2005 16:38:52 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post84902.html#84902</guid>
  </item> 
  <item>
   <title><![CDATA[Externally logging into WWForums? : I think he means using .net, in...]]></title>
   <link>https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post82225.html#82225</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=6526">Mart</a><br /><strong>Subject:</strong> 14900<br /><strong>Posted:</strong> 01&nbsp;May&nbsp;2005 at 2:51pm<br /><br />I think he means using .net, in which case you have these options:<br><ol>  <li>Don't use web wiz forums at all, you can't interoperate with ASP3.0 easily within ASP.NET. I.e. you cannot read &#099;ookies set in classicASP from ASP.NET, same for sessions and applications. An alternativewould be to use <a href="http://www.communityserver.org" target="_blank">http://www.communityserver.org which is wrote in 100% managed code and is extremely easy to integrate into a site</a></li>  <li>Rewrite the hash include (you can't use that algorithm directlyfrom managed code), if you do that in VB.NET there should only beminimal changes. If you want to do things like check if a user islogged in from you asp.net site you will need to rewrite some/most ofthe forum to allow ASP.NET to access the session variables etc. (maybeusing a database table where the variables are shared)<br>  </li></ol>]]>
   </description>
   <pubDate>Sun, 01 May 2005 14:51:06 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post82225.html#82225</guid>
  </item> 
  <item>
   <title><![CDATA[Externally logging into WWForums? : i have used that system  all...]]></title>
   <link>https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post82223.html#82223</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=2216">dj air</a><br /><strong>Subject:</strong> 14900<br /><strong>Posted:</strong> 01&nbsp;May&nbsp;2005 at 2:20pm<br /><br />i have used that system<br><br>all you need is the 1_way_hash.asp (or simular) found in the functions folder.<br><br>then when you want ot create a salt code generate a random number and then add that to the password so its Password &amp; Salt<br><br>then to encrypt it use<br>EncryptedPassword = HashEncrypt(Password &amp; Salt)<br><br>then EncryptedPassword is exactly that.. <br><br><br>you qill have to double check the function name.<br><br>also the above is example names.<br>]]>
   </description>
   <pubDate>Sun, 01 May 2005 14:20:09 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post82223.html#82223</guid>
  </item> 
  <item>
   <title><![CDATA[Externally logging into WWForums? : I am currently building a website...]]></title>
   <link>https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post82212.html#82212</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=20348">eXeterTBC</a><br /><strong>Subject:</strong> 14900<br /><strong>Posted:</strong> 01&nbsp;May&nbsp;2005 at 11:43am<br /><br />I am currently building a website in ASP.NET.&nbsp; I will need theability to have users log into the website.&nbsp; Since I plan on usingWWF for the forum piece it would be nice just to use the Author tableas the base user table for my application.&nbsp; Has anyone had luckwith recreating the one way hash algorhytm Borg uses using Dot NetCryptography?]]>
   </description>
   <pubDate>Sun, 01 May 2005 11:43:55 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/externally-logging-into-wwforums_topic14900_post82212.html#82212</guid>
  </item> 
 </channel>
</rss>