Sample code for 30+ languages & platforms
Java

DSA Get Key as XML

Gets the DSA key in XML format.

Chilkat Java Downloads

Java
import com.chilkatsoft.*;

public class ChilkatExample {

  static {
    try {
        System.loadLibrary("chilkat");
    } catch (UnsatisfiedLinkError e) {
      System.err.println("Native code library failed to load.\n" + e);
      System.exit(1);
    }
  }

  public static void main(String argv[])
  {
    boolean success = false;

    //  This example requires the Chilkat API to have been previously unlocked.
    //  See Global Unlock Sample for sample code.

    CkDsa dsa = new CkDsa();

    //  Generate a new 2048 bit DSA key.
    success = dsa.GenKey(2048);
    if (success != true) {
        System.out.println(dsa.lastErrorText());
        return;
        }

    //  Get the public key as XML
    boolean bPublicOnly = true;
    String xmlStr = dsa.toXml(bPublicOnly);
    System.out.println(xmlStr);

    //  Sample output.

    //  <DSAKeyValue>
    //  	<P>wBYOKu...2eoXw==</P>
    //  	<Q>1taJI7...kV2/9c=</Q>
    //  	<G>qjfbTi...eB1+g==</G>
    //  	<Y>t3tz...NqjsPEg==</Y>
    //  </DSAKeyValue>

    //  Get the private key as XML.
    bPublicOnly = false;
    xmlStr = dsa.toXml(bPublicOnly);

    System.out.println(xmlStr);

    //  Sample output.

    //  <DSAKeyValue>
    //  	<P>wBYOKu...2eoXw==</P>
    //  	<Q>1taJI7...kV2/9c=</Q>
    //  	<G>qjfbTi...eB1+g==</G>
    //  	<Y>t3tz...NqjsPEg==</Y>
    //  	<X>lm9F...XzuVO+qU=</X>
    //  </DSAKeyValue>
  }
}