I don't know how to generate a public and a private key for the DSA algorithm in byte array format.

link|improve this question
feedback

closed as not a real question by Matt Ball, Foo Bah, Bo Persson, Darin Dimitrov, Spudley Sep 25 '11 at 15:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

In DSA algorithm (from wiki):

  • Public key is (p, q, g, y).
  • Private key is x.

        var dsa = new DSACryptoServiceProvider();            
        var privateKey = dsa.ExportParameters(true); // private key
        var publicKey = dsa.ExportParameters(false); // public key
    

In publicKey it's P, Q, G, Y propertyes

In privateKey it's X

And don't forget to accept this answer!

link|improve this answer
feedback

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