This directory includes two keystores and 
they are just for the demonstrations. 
Don't use them for your work.


mykeystore1: This keystore is for the client side. 
             It is generated by next command,
  $ keytool -genkey -dname "cn=ymnk, ou=JDxpc, o=JCraft, c=JP"\
            -alias jdxpc -keypass happyhacking -keystore ./mykeystore1\
            -storepass happyhacking -validity 365


mykeystore2: This keystore is for the server side. 
             It is generated by next command,
  $ keytool -export -alias jdxpc\
            -keystore ./mykeystore1 -storepass happyhacking -file jdxpc.cer
  $ keytool -import -alias jdxpc -file jdxpc.cer -keystore ./mykeystore2 \
            -storepass happyhacking


prop: This file includes some properties, which are used 
      in SSLClientProxy and SSLServerProxy. 
      This file includes passphrase, so you should drop read/write permissions
      by others.
