X.509 v3 证书字段解释

简介:

一, X.509证书是什么?

    复杂来说,X.509是由国际电信联盟(ITU-T)制定的数字证书标准。为了提供公用网络用户目录信息服务,ITU于1988年制定了X.500系列标准。其中X.500和X.509是安全认证系统的核心,X.500定义了一种区别命名规则,以命名树来确保用户名称的唯一性;X.509则为X.500用户名称提供了通信实体鉴别机制,并规定了实体鉴别过程中广泛适用的证书语法和数据接口,X.509称之为证书。

    简单来说,X.509是一套数字证书的体系标准,它标准化了一个通用的、灵活的证书格式。X.509是X.500标准系列的一部分,在PKI的发展中,X.509起到了无可比拟的作用,其丰富的证书携带信息使之成为当前最流行的证书存储格式。


二,什么是LDAP?

    LDAP,它的英文全称是Lightweight Directory Access Protocol,轻量级目录访问协议。它是基于X.500标准的,但是简单多了并且可以根据需要定制。LDAP不是数据库而是用来访问存储在信息目录(也就是LDAP目录)中的信息的协议。也就是说"通过使用LDAP,可以在信息目录的正确位置读取(或存储)数据",LDAP主要是优化数据读取的性能。与X.500不同,LDAP支持TCP/IP,这对访问Internet是必须的。


三,x509 v3证书格式都有哪些字段?(写英文了,因为工作环境都是英文,需要中文的自己翻译一下即可)

    1. Subject. Provides the name of the computer, user, network device, or service that the CA issues the certificate to. The subject name is commonly represented by using an X.500 or Lightweight Directory Access Protocol (LDAP) format.

    2. Serial Number. Provides a unique identifier for each certificate that a CA issues.

    3. Issuer. Provides a distinguished name for the CA that issued the certificate. The issuer name is

commonly represented by using an X.500 or LDAP format.

    4. Valid From. Provides the date and time when the certificate becomes valid. 

    5. Valid To. Provides the date and time when the certificate is no longer considered valid.

    6. Public Key. Contains the public key of the key pair that is associated with the certificate.

    7. Subject Key Identifier. The public key identity of user subject which is used to distinguish different

    key pairs of one certificate owner.

    8. Authority Key Identifier. Authority's public key identity.

    9. Subject alternative name. A subject can be presented in many different formats. 

    10. CRL distribution points (CDP). When a user, service, or computer presents a certificate, an          application or service must determine whether the certificate has been revoked before its validity            period has expired. 

    11. Authority Information Access (AIA). The AIA extension provides one or more URLs from where an application or service can retrieve the issuing CA certificate. 

    12. Thumbprint algorithm. The algorithm used to derive Hash message..

    13. Thumbprint. The signature applied to the certificate Hash message by issuer or CA.

    14.Enhanced Key Usage (EKU). This attribute includes an object identifier (OID) for each application or service a certificate can be used for. 

    15.Certificate policies. Describes what measures an organization takes to validate the identity of a certificate requestor before it issues a certificate. 



证书格式其实并没有写全,但一般有这些就够用了。如果我写的有不对的地方,还请各位留言指正。



本文转自 拾瓦兴阁 51CTO博客,原文链接:http://blog.51cto.com/ponyjia/1620121

相关文章
|
5天前
|
安全 算法 网络安全
什么是 X.509 证书
什么是 X.509 证书
13 1
|
数据建模 网络安全 数据安全/隐私保护
三种验证类型的https证书
https证书即SSL证书,其三种验证类型是指DV、OV、EV。不同的验证类型适合不同的网站
三种验证类型的https证书
|
算法 网络安全 数据安全/隐私保护
【计算机网络】网络安全 : 公钥分配 ( 公钥使用者 | 公钥分配 | CA 证书格式 | CA 证书吊销 )
【计算机网络】网络安全 : 公钥分配 ( 公钥使用者 | 公钥分配 | CA 证书格式 | CA 证书吊销 )
226 0
|
存储 算法 安全
密码学系列之:PKI的证书格式表示X.509
在PKI(public key infrastructure)公钥设施基础体系中,所有的一切操作都是围绕着证书和密钥的,它提供了创建、管理、分发、使用、存储和撤销数字证书以及管理公钥加密所需的一组角色、策略、硬件、软件和程序。
|
安全 网络安全
x.509证书
x.509证书
134 0
x.509证书
如何把密钥改成pem格式教程
说明:   这里以支付宝公钥为例,进行演示其他密钥也是一样的操作方式   如何生成RSA2密钥:https://openclub.alipay.com/read.php?tid=2177&fid=46   我们拿到的支付宝公钥都是字符串形式的(如下图)   pem密钥模板:pem模板密钥.zip 第一步:找到一个pem格式商户公钥。
1575 0
|
数据安全/隐私保护
|
XML 安全 数据安全/隐私保护
利用X.509证书对XML进行加密和签名
综述       XML加密和签名技术应用非常广泛。       ASP.NET 使用XML加密对配置信息进行加密;InfoPath使用XML签名对表单进行签名;Web服务使用XML加密和签名对SOAP消息进行加密和签名;等等。