What is the performance difference of pki to symmetric encryption?

前端 未结 7 707
情歌与酒
情歌与酒 2021-02-05 22:57

We are looking to do some heavy security requirements on our project, and we need to do a lot of encryption that is highly performant.

I think that I know that PKI is mu

相关标签:
7条回答
  • 2021-02-05 23:39

    Perhaps you can add some details about your project so that you get better quality answers. What are you trying to secure? From whom? If you could explain the requirements of your security, you'll get a much better answer. Performance doesn't mean much if the encryption mechanism isn't protecting what you think it is.

    For instance, X509 certs are an industrial standard way of securing client/server endpoints. PGP armoring can be used to secure license files. For simplicity, Cipher block chaining with Blowfish (and a host of other ciphers) is easy to use in Perl or Java, if you control both end points.

    Thanks.

    0 讨论(0)
提交回复
热议问题