OCSPLoginModule
description
This loginModule permits an authentication for your web application based on X509 certificates: it validates their certPath, and checks if some of them are revoked against a OCSP mechanism. this mechanism permits real-time certificate revocation check.General parameters
| name | mandatory | values | description |
|---|---|---|---|
| ocspServerURL | yes | ||
| IssuerCACertLocation | yes | ||
| OcspSignerCertLocation | yes | must be signed by CA (signed by another authority is not yet supported) |
Example
This is a example jGuardAthentication.xml using OCSPLoginModule...
...
<loginModule>
<name>net.sf.jguard.ext.authentication.loginmodules.OCSPLoginModule</name>
<flag>REQUIRED</flag>
<loginModuleOptions>
<option>
<name>debug</name>
<value>true</value>
</option>
<option>
<name>ocspServerURL</name>
<value>http://127.0.0.1:8080/ejbca/publicweb/status/ocsp</value>
</option>
<option>
<name>IssuerCACertLocation</name>
<value>/home/user/certificates/AdminCA1.der</value>
</option>
<option>
<name>OcspSignerCertLocation</name>
<value>/home/user/certificates/AdminCA1.der</value>
</option>
</loginModuleOptions>
</loginModule>
...
...
Version 1.5 last modified by Xavier Francisco on 23/01/2007 at 11:57
Document data
Attachments:
No attachments for this document
Comments: 0