openssl库_什么是OpenSSL库?

openssl库_什么是OpenSSL库?

openssl库

OpenSSL is most popular open source cryptography library which provides a lot of tools, libraries, algorithms about cryptography. It is mostly known with Secure Socket Layers (SSL) and Transport Layer Security (TLS) protocols.

OpenSSL是最流行的开源密码术库,它提供了许多有关密码术的工具,库和算法。 安全套接字层(SSL)和传输层安全性(TLS)协议最广为人知。

支持的加密算法 (Supported Encryption Algorithms)

Encryption is used to make given data unreadable by the intruders. It is mainly used for confidentiality. OpenSSL supports following algorithms.

加密用于使入侵者无法读取给定的数据。 它主要用于保密。 OpenSSL支持以下算法。

  • RSA

    RSA
  • DSA

    DSA
  • AES

    AES
  • DES

    DES
  • 3DES

    3DES

支持的哈希算法 (Supported Hash Algorithms)

Hashing is used to create one way values which can not be converted back. This is useful for creating values identify given data. OpenSSL supports following hash algorithms.

散列用于创建无法转换回的单向值。 这对于创建用于标识给定数据的值很有用。 OpenSSL支持以下哈希算法。

  • MD4

    MD4
  • MD5

    MD5
  • SHA1

    SHA1
  • SHA256

    SHA256
  • SHA512

    SHA512
  • RC4

    RC4
  • DES

    DES
  • HMAC

    HMAC

支持的证书算法 (Supported Certificate Algorithms)

Certificates used for authentic of the given data. OpenSSL supports following X.509 Certificate Algorithms

用于验证给定数据的证书。 OpenSSL支持以下X.509证书算法

  • RSA

    RSA
  • DSA

    DSA
  • Elliptic Curves

    椭圆曲线

支持的证书格式(Supported Certificate Formats)

Certificates hold some data and this data should be formatted in a standard manner. Certificate formats are used to specify this data structure.

证书包含一些数据,并且该数据应以标准方式格式化。 证书格式用于指定此数据结构。

  • PCKS10

    PCKS10
  • X509

    X509
  • PKCS12

    PKCS12
了解更多LDAP协议端口号是什么? 比较LDAP端口389和636

翻译自: https://www.poftut.com/what-is-openssl-library/

openssl库