Exporting the Private Key from a JKS keystore

Java - 19 Comments » - Posted on January, 19 at 3:22 pm

A common problem faced when moving certificates and keys from tomcat to Apache web server is that keytool does not allow you to export the private key in the format that apache’s modssl module requires. Mark Foster’s post and Andrew Morrow’s post contains valuable information on how to export a key from a JKS keystore.
Here […]

Read More..>>

Posted in Java | 19 Comments »

Writing an Interpretter Using JavaCC

Java, Tutorial - 18 Comments » - Posted on January, 15 at 11:37 am

Ever wondered how an interpreter works ? Well, while evaluating parser generators for executing expressions I wrote this small example.
Getting to the basics
What is an Interpreter ?
An interpreter is a computer program that executes the program given to it as an input. In contrast, a compiler generates machine code for the program given to it, […]

Read More..>>

Posted in Java, Tutorial | 18 Comments »