I wanna know how to generate csr file by using X.509 certificate standard. What the different between X500Name and X509Name? I wanna add subject data with : Common Name, Organization, Organization Unit, Locality, Country, State and Email. Please explain how to generate csr file and give me some link.
我想知道如何使用X.509证书标准生成csr文件。 X500Name和X509Name有什么不同?我想添加主题数据:公共名称,组织,组织单位,地点,国家,州和电子邮件。请解释如何生成csr文件并给我一些链接。
Where do i add email in this X500Name?
我在哪里添加此X500Name中的电子邮件?
X500Name x500Name = new X500Name(CN, OU, O, L, S, C);
X500Name x500Name = new X500Name(CN,OU,O,L,S,C);
Please explain me!!!
请解释一下!!!
Thanks.
1 个解决方案
#1
0
X.500 is more general standard about organization of objects. X500Name is a name of such object in some structural repository/system. X.509 is a substandard related to security objects, certificates, algorithms. See more >>
X.500是关于对象组织的更通用的标准。 X500Name是某个结构存储库/系统中此类对象的名称。 X.509是与安全对象,证书,算法相关的次级标准。查看更多>>
What the different between X500Name and X509Name?
X500Name和X509Name有什么不同?
X509Name could (incorrectly) be a name of certificate property - it should reather be e.g. "X500Name of some X509 cetificate attribute"
X509Name可能(错误地)是证书属性的名称 - 它应该重新成为例如“某些X509的X500名称属性”
#1
0
X.500 is more general standard about organization of objects. X500Name is a name of such object in some structural repository/system. X.509 is a substandard related to security objects, certificates, algorithms. See more >>
X.500是关于对象组织的更通用的标准。 X500Name是某个结构存储库/系统中此类对象的名称。 X.509是与安全对象,证书,算法相关的次级标准。查看更多>>
What the different between X500Name and X509Name?
X500Name和X509Name有什么不同?
X509Name could (incorrectly) be a name of certificate property - it should reather be e.g. "X500Name of some X509 cetificate attribute"
X509Name可能(错误地)是证书属性的名称 - 它应该重新成为例如“某些X509的X500名称属性”