I want to verify public key of my algorithm using CA certificate. Is there any way to put .cer file of CA in browser certificate repository and verify signature using that certificate in javascript?
Use case: I used one algorithm for doing digital signature. So I generated public key and private key for user. So when user creates any document I am putting signature on that document. And using javascript I am verifying signature using public key of user. Now the problem is anyone can create their own public key and signature for that document. So my question is to verify public key using CA certificate. Is there any way to do it?