DERInteger x = (DERInteger)seq.getObjectAt(5);
privSpec = new DSAPrivateKeySpec(
x.getValue(), p.getValue(),
q.getValue(), g.getValue());
pubSpec = new DSAPublicKeySpec(
y.getValue(), p.getValue(),
q.getValue(), g.getValue());
}
KeyFactory fact = KeyFactory.getInstance(type, provider);