<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pki.git/base/ca, branch direct-deployment</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/'/>
<entry>
<title>Deploying webapps from shared folder.</title>
<updated>2013-02-06T00:57:38+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2013-02-06T00:57:38+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=8011267258e6d04af15f0b5cdacc939fb11a81f8'/>
<id>8011267258e6d04af15f0b5cdacc939fb11a81f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rearranged context.xml.</title>
<updated>2013-02-05T22:29:01+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2013-02-05T22:13:22+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=991577dd40bbb18613893362783d0cd06cbdce79'/>
<id>991577dd40bbb18613893362783d0cd06cbdce79</id>
<content type='text'>
Previously the context.xml files are deployed into META-INF folders
in each webapps. They now have been moved into &lt;instance&gt;/conf/
Catalina/localhost/&lt;subsystem&gt;.xml to allow further clean-up.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously the context.xml files are deployed into META-INF folders
in each webapps. They now have been moved into &lt;instance&gt;/conf/
Catalina/localhost/&lt;subsystem&gt;.xml to allow further clean-up.
</pre>
</div>
</content>
</entry>
<entry>
<title>Session-based nonces.</title>
<updated>2013-02-04T17:06:40+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2013-01-23T18:10:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=6259ba064f4c17b7f6891fcb61501103348936be'/>
<id>6259ba064f4c17b7f6891fcb61501103348936be</id>
<content type='text'>
Previously nonces were stored in a global map which might not scale
well due to some issues:
1. The map uses the nonces as map keys. There were possible nonce
   collisions which required special handling.
2. The collision handling code was not thread safe. There were
   possible race conditions during concurrent modifications.
3. The map was shared and size limited. If there were a lot of
   users using the system, valid nonces could get pruned.
4. The map maps the nonces to client certificates. This limits
   the possible authentication methods that can be supported.

Now the code has been modified such that each user has a private map
in the user's session to store the nonces. Additional locking has been
implemented to protect against concurrent modifications. The map now
uses the target of the operation as the map key, eliminating possible
collisions and allowing the use of other authentication methods. Since
this is a private map, it's not affected by the number of users using
the system.

Ticket #474
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously nonces were stored in a global map which might not scale
well due to some issues:
1. The map uses the nonces as map keys. There were possible nonce
   collisions which required special handling.
2. The collision handling code was not thread safe. There were
   possible race conditions during concurrent modifications.
3. The map was shared and size limited. If there were a lot of
   users using the system, valid nonces could get pruned.
4. The map maps the nonces to client certificates. This limits
   the possible authentication methods that can be supported.

Now the code has been modified such that each user has a private map
in the user's session to store the nonces. Additional locking has been
implemented to protect against concurrent modifications. The map now
uses the target of the operation as the map key, eliminating possible
collisions and allowing the use of other authentication methods. Since
this is a private map, it's not affected by the number of users using
the system.

Ticket #474
</pre>
</div>
</content>
</entry>
<entry>
<title>https://fedorahosted.org/pki/ticket/362 RFE: CMC ECC</title>
<updated>2013-01-16T04:58:46+00:00</updated>
<author>
<name>Christina Fu</name>
<email>cfu@redhat.com</email>
</author>
<published>2013-01-16T07:59:24+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=7a0252247e860806d6456e997149602c9750206a'/>
<id>7a0252247e860806d6456e997149602c9750206a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolved Trac Ticket 367 - pkidestroy does not remove connector</title>
<updated>2013-01-15T14:28:38+00:00</updated>
<author>
<name>Ade Lee</name>
<email>alee@redhat.com</email>
</author>
<published>2012-12-20T22:38:13+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=1cceecafb8050ec362a9c9568d36d52d3fe4117e'/>
<id>1cceecafb8050ec362a9c9568d36d52d3fe4117e</id>
<content type='text'>
* Added RESTful servlet to add/remove a KRA connector from the CA.
* Modified ACL to allow KRA subsystem user to remove connector.
* Modified connector code to allow the connector to be replaced without a server restart.
* Added functionality to pki CLI to add/remove connector
* Added code to pkidestroy to remove the connector (using both pki CLI and sslget)
  When the issues with pki connection are resolved, we will use that method instead.
* Modified sslget to accept HTTP return codes != 200.  In this case, we were returning
  204 - which is perfectly legitimate.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Added RESTful servlet to add/remove a KRA connector from the CA.
* Modified ACL to allow KRA subsystem user to remove connector.
* Modified connector code to allow the connector to be replaced without a server restart.
* Added functionality to pki CLI to add/remove connector
* Added code to pkidestroy to remove the connector (using both pki CLI and sslget)
  When the issues with pki connection are resolved, we will use that method instead.
* Modified sslget to accept HTTP return codes != 200.  In this case, we were returning
  204 - which is perfectly legitimate.
</pre>
</div>
</content>
</entry>
<entry>
<title>Increase root CA validity to 20 years</title>
<updated>2013-01-07T22:44:39+00:00</updated>
<author>
<name>Ade Lee</name>
<email>alee@redhat.com</email>
</author>
<published>2013-01-07T21:38:25+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=b8e407aa83f3ff4a4feea049e4ada54853b39f4d'/>
<id>b8e407aa83f3ff4a4feea049e4ada54853b39f4d</id>
<content type='text'>
Trac Ticket #466
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Trac Ticket #466
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove server code from CertSearchRequest</title>
<updated>2012-12-07T06:02:09+00:00</updated>
<author>
<name>Ade Lee</name>
<email>alee@redhat.com</email>
</author>
<published>2012-12-07T05:14:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=cbfdae84f511ae526f1e7e29f71e7f60eef96094'/>
<id>cbfdae84f511ae526f1e7e29f71e7f60eef96094</id>
<content type='text'>
Ticket #418
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ticket #418
</pre>
</div>
</content>
</entry>
<entry>
<title>Parameterizing RESTEasy paths.</title>
<updated>2012-12-07T02:23:11+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-12-06T18:06:14+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=9996d71e1a4fb7a8ca6752b83e4f2393dbefa76b'/>
<id>9996d71e1a4fb7a8ca6752b83e4f2393dbefa76b</id>
<content type='text'>
The paths to RESTEasy jar files have been modified such that it can
be configured globally at build time using the spec file to support
different distributions, and at deployment time using a system-wide
configuration in /etc/pki/pki.conf.

Ticket #422, #423.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The paths to RESTEasy jar files have been modified such that it can
be configured globally at build time using the spec file to support
different distributions, and at deployment time using a system-wide
configuration in /etc/pki/pki.conf.

Ticket #422, #423.
</pre>
</div>
</content>
</entry>
<entry>
<title>I18n for ProfileList.template.</title>
<updated>2012-12-03T16:48:40+00:00</updated>
<author>
<name>Endi Sukma Dewata</name>
<email>edewata@redhat.com</email>
</author>
<published>2012-11-13T23:07:43+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=66c519f0185f24a650df834d781be2ed7ef857f7'/>
<id>66c519f0185f24a650df834d781be2ed7ef857f7</id>
<content type='text'>
The messages in ProfileList.template in CA EE has been extracted
into a properties file which can be translated separately.

The original messages in the template have been marked as follows:
  &lt;span class="message" name="...key..."&gt;...message...&lt;/span&gt;

When the page is loaded into the browser, the original message will
be replaced with the translated messages.

Ticket #406
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The messages in ProfileList.template in CA EE has been extracted
into a properties file which can be translated separately.

The original messages in the template have been marked as follows:
  &lt;span class="message" name="...key..."&gt;...message...&lt;/span&gt;

When the page is loaded into the browser, the original message will
be replaced with the translated messages.

Ticket #406
</pre>
</div>
</content>
</entry>
<entry>
<title>Misc changes to get rhel 7 build to work</title>
<updated>2012-11-21T15:47:50+00:00</updated>
<author>
<name>Ade Lee</name>
<email>alee@redhat.com</email>
</author>
<published>2012-11-21T15:16:04+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/edewata/public_git/pki.git/commit/?id=871b4423babc140d984d4b49aa380710cfcaf72a'/>
<id>871b4423babc140d984d4b49aa380710cfcaf72a</id>
<content type='text'>
1. Modified cmake dependency
2. Corrected conditionals in spec file
3. Added paths for resteasy-base
4. Added paths to policy for resteasy-base
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1. Modified cmake dependency
2. Corrected conditionals in spec file
3. Added paths for resteasy-base
4. Added paths to policy for resteasy-base
</pre>
</div>
</content>
</entry>
</feed>
