PGP Encryption in Javascript

前端 未结 4 618
刺人心
刺人心 2021-01-31 09:58

I\'m looking to do some client-side PGP encryption in Javascript. I\'ve found some GPL library scattered on the web, but for obvious reason, I cannot use that code due to licens

相关标签:
4条回答
  • 2021-01-31 10:35

    I recently found a MIT licensed client-side javascript library:

    https://github.com/bitwiseshiftleft/sjcl

    It works well so far, and it allows for a full-client side encryption of the data. Ensuring that even before the data leaves the browser, it is already safe using a public-private key encryption scheme.

    0 讨论(0)
  • 2021-01-31 10:42

    OpenPGP.js is probably the most complete and fastest implementation (it's a collaborative effort) and licensed under the LGPL. You might want to join their mailing list.

    0 讨论(0)
  • 2021-01-31 10:44

    See http://www.hanewin.net/encrypt/

    0 讨论(0)
  • 2021-01-31 10:52

    I know this is an old question, but I recently found: https://keybase.io/kbpgp when looking for a similar item. BSD Licensed instead of *GPL.

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