flutter-openpgp icon indicating copy to clipboard operation
flutter-openpgp copied to clipboard

How to create a Certificate Signing Request?

Open SHERLOCKG opened this issue 1 year ago • 0 comments

Hello,

I have generate key pair.

final keyOptions = KeyOptions()..rsaBits = 2048;
var keyPair = await OpenPGP.generate(
    options: Options()
      ..name ='test'
      ..passphrase = 'test'
      ..keyOptions = keyOptions);

Now I want to generate a CSR.

Is there any way I can do it?

SHERLOCKG avatar Jul 22 '24 06:07 SHERLOCKG