I am trying to use jsrsasign library to sign a file. https://kjur.github.io/jsrsasign
How I can proceed to use the key from an imported browser certificate? (local browser certificate generated and imported)
Is it possible to export the key via javascript from local certificate to use in the method below? (to the keyFromLocalCertificate)
var rsa = new RSAKey();
rsa.readPrivateKeyFromPEMString(keyFromLocalCertificate);
Thanks.