Home | History | Annotate | Line # | Download | only in dist
index.html revision 1.1.1.1
      1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
      2 
      3 <html>
      4 	<head>
      5 		<title>NetBSD &amp; Google's Summer of Code: Mateusz Kocielski - SASL client library (sasl_client_lib)</title>
      6 		<link rel="stylesheet" type="text/css" href="style.css">
      7 		<meta http-equiv="content-type" content="text/html; charset=UTF-8">
      8 	</head>
      9 
     10 
     11 <body>
     12 	<div style="text-align:center;">
     13 		<table style="margin-left: auto; margin-right: auto;">
     14 			<tr>
     15         		<td><a href="http://www.NetBSD.org/"><img style="border: none; vertical-align: top;" src="../../NetBSD.png" alt="[NetBSD logo]"></a></td>
     16         		<td><p style="font-size : 47px;">&nbsp;&nbsp;&nbsp;&amp;&nbsp;&nbsp;&nbsp;</p></td>
     17         		<td><a href="http://www.google.com/"><img style="border: none; vertical-align: bottom;" src="http://www.google.com/intl/en/images/logo.gif" alt="[Google logo]"></a></td>
     18 			</tr>
     19 		</table>
     20 		
     21 	<h1>NetBSD: SASL client library</h1>
     22 	</div>
     23 
     24 	<div class="main" style="text-align:center;">
     25 		<a href="#whatisit">What is it</a> | 
     26 		<a href="#status">Schedule</a> | 
     27 		<a href="#repo">Repository</a> |
     28 		<a href="soc.html">GSoC</a> |
     29 		<a href="#doc">Documentation</a> |
     30 		<a href="#tech">Technical details</a> |
     31 		<a href="#contact">Contact</a>
     32 	</div>
     33 
     34 	<div class="main">
     35 		<a name="whatisit"></a>
     36 		<p class="header">What is it?</p>
     37 		<a href="http://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer">Simple Authentication and Security Layer</a> is a framework dedicated to internet
     38 		protocols for an authentication and a data security. SASL is widely used in 
     39 		many protocols i.e. SMTP, IMAP, XMPP. Project goal is to write robust client
     40 		library focused on security and usability. Project was started as the part of
     41 		the Google Summer of Code project, more information about it can be found
     42 		in <a href="soc.html">GSoC section</a>.
     43 	</div>
     44 
     45 	<div class="main">
     46 		<a name="status"></a>
     47 		<p class="header">Status</p>
     48 
     49 		<b>Project schedule:</b>
     50 		<ul>
     51 			<li> <b>August 23 - September 3:</b>
     52 			<ul>
     53 					<li>postfix integration</li>
     54 					<li>testing/fixing</li>
     55 			</ul>
     56 			</li>
     57 		</ul>
     58 		<ul>
     59 			<li> <b>September 4 - September 8:</b>
     60 			<ul>
     61 					<li>improving DIGEST-MD5 implementation</li>
     62 					<li>improving test infrastructure</li>
     63 			</ul>
     64 			</li>
     65 		</ul>
     66 		<ul>
     67 			<li> <b>September 8 - September 12:</b>
     68 			<ul>
     69 					<li>improving code quality</li>
     70 					<li>improving documentation</li>
     71 			</ul>
     72 			</li>
     73 		</ul>
     74 
     75 		Future plans involves implementing others mechanisms (i.e. S/KEY).
     76 	</div>
     77 
     78 	<div class="main">
     79 		<a name="repo"></a>
     80 		<p class="header">Project's repository</p>
     81 
     82 		Project is aviliable via CVS, anonymous read-only access is provided. Run following command for accessing the repository:
     83 		<br><br>
     84 		<b>cvs -z3 -d:pserver:anonymous (a] netbsd-soc.cvs.sourceforge.net:/cvsroot/netbsd-soc checkout -P sasl_client_lib</b>
     85 	</div>
     86 
     87 	<div class="main">
     88 		<a name="doc"></a>
     89 		<p class="header">Documentation</p>
     90 
     91 		<b>Standards:</b>
     92 		<ul>
     93 			<li><a href="http://www.ietf.org/rfc/rfc2195.txt">RFC2195</a> - IMAP/POP AUTHorize Extension for Simple Challenge/Response (CRAM-MD5)
     94 			<li><a href="http://www.ietf.org/rfc/rfc2222.txt">RFC2222</a> - Simple Authentication and Security Layer (SASL, GSSAPI, EXTERN)
     95 			<li><a href="http://www.ietf.org/rfc/rfc2245.txt">RFC2245</a> - Anonymous SASL Mechanism (ANONYMOUS)
     96 			<li><a href="http://www.ietf.org/rfc/rfc2595.txt">RFC2595</a> - Using TLS with IMAP, POP3 and ACAP (PLAIN)
     97 			<li><a href="http://www.ietf.org/rfc/rfc2831.txt">RFC2831</a> - Using Digest Authentication as a SASL Mechanism (DIGEST-MD5)
     98 		</ul>
     99 		<b>Related work:</b>
    100 		<ul>
    101 			<li><a href="http://asg.web.cmu.edu/sasl/sasl-library.html">Cyrus-SASL</a> - Cyrus Simple Authentication and Security Layer library
    102 			<li><a href="http://www.gnu.org/software/gsasl/">Libgsasl</a> - GNU Simple Authentication and Security Layer library
    103 		</ul>
    104 	</div>
    105 
    106 	<div class="main">
    107 		<a name="tech"></a>
    108 		<p class="header">Technical Details</p>
    109 		<b>Testing:</b>
    110 		<ul>
    111 			<li><a href="http://www.netbsd.org/~jmmv/atf/">ATF</a> - Automated Testing Framework
    112 		</ul>
    113 	</div>
    114 
    115 	<div class="main">
    116 		<a name="contact"></a>
    117 		<p class="header">Contact</p>
    118 	
    119 		<p class="paragraph">
    120 		If you've got any questions or suggestions, then feel free to
    121 		contact me by e-mail, my address is <b>m.kocielski (a] gmail.com</b>. You can also contact me
    122 		more interactively via IRC, my nickname is <b>shm</b> at the freenode network.
    123 		</p>
    124 	</div>
    125 
    126 	<hr>
    127 
    128 	<table border=0>
    129 		<tr>
    130 			<td>
    131 				<a href="http://sourceforge.net/projects/netbsd-soc"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=141771&type=16" width="150" height="40" style="border: none;" alt="Get NetBSD Summer of Code projects at SourceForge.net. Fast, secure and Free Open Source software downloads"></a>
    132 			</td>
    133 			<td>
    134 			<table>
    135   			<tr> <td> Mateusz Kocielski &lt;<tt>m.kocielski (a] gmail.com</tt>&gt; </td> </tr>
    136 			<tr> <td> $Id: index.html,v 1.1.1.1 2010/11/27 21:23:58 agc Exp $ </td> </tr>
    137 		    </table>
    138 			</td>
    139 		</tr>
    140 	</table>
    141 
    142 	</body>
    143 </html>
    144