-3

I am a newbie of sorts as far as particulars of security is concerned.can somebody list all the possible uses of a digital certificate? it is used in SSL, signing and what else? Also is there a good reference book or article to understand certificates in its entirety?

  • Possible duplicate of [How does SSL/TLS work?](https://security.stackexchange.com/questions/20803/how-does-ssl-tls-work) –  Nov 07 '19 at 10:46

1 Answers1

1

That's a bit like asking for an exhaustive list of the uses of paper.

In a broad sense, certificates do one thing: linking a public key to a name.

That public key can belong to a signing algorithm, or a key exchange algorithm, or an encryption algorithm. So literally any kind of public-key cryptography can be put into a certificate.

So in a broad sense, your question reduces to: "can somebody list all the possible uses of cryptography?".

I would start with a general-purpose cryptography text book, paying special attention to the chapters on public key crypto.

Mike Ounsworth
  • 58,107
  • 21
  • 154
  • 209