Patrick wrote: >Ok got it. One other thing about the javadoc: I liked a previous format >where there was another frame on the left where one had access to all >classes...Also what is the deal with CryptoManager not being directlry >accerssbile from the main page (have to go thru CryptoToken to get to it)?? > >-- P >
I can restore the frame. I remove it when I generate the Javadoc so we can have the standard mozilla.org menu down the left side of the page. Maybe on the next release of JSS I will add it. CryptoManager is accessible from the main page. Under the Packages list, click "org.mozilla.jss". CryptoManager is not in the org.mozilla.jss.crypto package. I guess that seems silly given its name. The o.m.j.crypto package was meant to contain only low-level crypto operations (encryption, signing, etc.), whereas CryptoManager is a central class for all of JSS. That's why I put it in the higher-level package. In an ideal world we wouldn't need a CryptoManager. Everything would be modular. We're moving in that direction by implementing the Certification Path API and other standard Java APIs.
