Penguin
Annotated edit history of X509 version 8, including all changes. View license author blame.
Rev Author # Line
5 StuartYeates 1 X509 is a standard for defining a DigitalCertificate. It is the signing system used for [SSL]. The [X509] PublicKey security model is almost completely incompatible with the [OpenPGP] PublicKey security model, but they serve very different purposes. [X509] is heirarchical and commerce-oriented, whereas [PGP]/[GPG] is massively distributed, very fault tolerant and works using a WebOfTrust.
1 CraigBox 2
8 JuanGarcia 3 Some useful documentation on X509 certificates: http://java.sun.com/j2se/1.4.2/docs/guide/security/cert3.html
2 PerryLorier 4
6 StuartYeates 5 Some information about how to implement [X509]: http://www.cs.auckland.ac.nz/~pgut001/pubs/x509guide.txt This is also just an interesting read to find out why X509 is such a bizarre standard
1 CraigBox 6
7 Things that use X509 certificates:
8
5 StuartYeates 9 * Various code-signing schemes, such as signed Java ARchives, and Microsoft Authenticode (because these things are built upon [SSL]).
6 StuartYeates 10 * Various secure E-Mail standards, such as [PEM] and [S/MIME] (S/MIME can also use [OpenPGP]).
1 CraigBox 11 * E-Commerce protocols, such as SET.
12 * MicrosoftWindows
13
6 StuartYeates 14 !!Why you won't find much [X509] information on the [InterNet]
15
16 The [X509] standard was developed by the [ITU-T] which changes money for version of the standard, rather than making them freely avaliable over the InterNet. This is not a problem if you work for a big telecommunications company which has the resources to get you a copy of the standard, but can be a significant barrier to entry for smaller players and OpenSource developers. This may be a reason for the lack of [X509] support in the open source world, expecially compared to things like [OpenPGP] and other freely avaliable standards.
3 StuartYeates 17
7 PerryLorier 18 __Breaking news!__ the ITU is allowing you to download any 3 specifications per year for free. Which is great since things like [X509] rely on other standards, but by 2033 you may have enough information! :)
3 StuartYeates 19 ----
20 CategoryStandards