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?
You should check Public key algorithms as per documentation. Basically initialize private key, then generate private key. Then you can export the generated keys.
You should check Public key algorithms as per documentation. Basically initialize private key, then generate private key. Then you can export the generated keys.