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();
link|improve this question

75% accept rate
What error are you getting? What does your (PHP) code look like? What, exactly, is going wrong? – Charles Aug 22 '10 at 16:25
There doesn't seem to be an API in PHP, so I have no PHP code at all. – Mohsen Aug 23 '10 at 1:10
feedback

1 Answer

up vote 1 down vote accepted

You are after the PHP OpenSSL extension.

Specifically, load the private key with openssl_pkey_get_private() and create the signature with openssl_sign(), passing OPENSSL_ALGO_DSS1 as $signature_alg.

link|improve this answer
I cannot verify at the moment that this works or not. I accept this, as it seems reasonable. Thank you caf! – Mohsen Aug 30 '10 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.