Any success in implementing SHA1withDSA signature with PHP? A failure reported here.
PKCS8EncodedKeySpec prvSpec = new PKCS8EncodedKeySpec(prvKeyBytes);
KeyFactory keyFactory = KeyFactory.getInstance("DSA");
PrivateKey prvKey = keyFactory.generatePrivate(prvSpec);
Signature sig = Signature.getInstance("SHA1withDSA");
sig.initSign(prvKey);
sig.update(text);
byte[] result = sig.sign();
You are after the PHP OpenSSL extension.
Specifically, load the private key with
openssl_pkey_get_private()and create the signature withopenssl_sign(), passingOPENSSL_ALGO_DSS1as$signature_alg.