RUNNING DEMO PROGRAMS
To run the demos use the following commands:
        java COM.claymoresystems.ptls.demo.SSLServer -f -D dh1024.pem
the -f tells it to seed the PRNG with zeros for faster startup
(but zero security)
the -D tells it to use dh1024.pem for it's DH params instead of
generating them on the fly.

and in a different shell, execute:
        java COM.claymoresystems.ptls.demo.SSLClient

NOTE: you will most likely have to setup your classpath variable to include
the cryptix, cryptix-asn1, gnu-getopt and the puretls jar (both the main
puretls and the puretls demo jar).

If all goes well, you should see (in the window in which
you ran SSLClient):
        Cipher suite: TLS_DHE_DSS_WITH_DES_CBC_SHA
        Cert chain
        Issuer C=US,ST=California,O=Claymore Systems, Inc.,CN=Test CA
        Subject C=US,ST=California,O=Claymore Systems, Inc.,CN=Test CA
        Serial 0
        Validity Tue Jun 22 18:07:17 GMT 1999-Thu Jul 22 18:07:17 GMT 1999
        Issuer C=US,ST=California,O=Claymore Systems, Inc.,CN=Test CA
        Subject C=US,ST=California,O=Claymore Systems, Inc.,CN=Test Server
        Serial 6
        Validity Tue Jun 22 18:08:24 GMT 1999-Wed Jun 21 18:08:24 GMT 2000
        HTTP/1.0 200 OK
        Server: PureTLS Demo Server

        Success!

And in the window in which you ran SSLServer:
        Accepted connection


