Generating a RSA key-pair with GnuTLS in C

318 views Asked by At

How do I generate a RSA key-pair in GnuTLS in C? What function do I need to call? Do I need to initialize the library first?

1

There are 1 answers

2
muradm On

You should check Public key algorithms as per documentation. Basically initialize private key, then generate private key. Then you can export the generated keys.