Free Cryptography libraries

后端 未结 4 652
小鲜肉
小鲜肉 2021-02-06 18:43

What are the most stable and useful Cryptography libraries, that they are:

  • written with/for python, c++, c#, .net
  • opensource, GNU, or other free license
4条回答
  •  -上瘾入骨i
    2021-02-06 19:13

    The standard Python library (implementing common ciphers like AES and RSA) is PyCrypto. It doesn't support things like PKCS yet, however. There is a partial Python wrapper for the Crypto++ library given by PyCryptopp, which you may find useful.

    The OpenSSL library is also wrapped for Python by PyOpenSSL. A Python implementation of SSH is Paramiko.

提交回复
热议问题