From 830e1002135f2b5580b442dfcfc349b543006d8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sun, 24 Sep 2006 09:15:10 +0000 Subject: [PATCH] remove unused file git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18162 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/asn1/x509.asn1 | 79 ---------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 lib/asn1/x509.asn1 diff --git a/lib/asn1/x509.asn1 b/lib/asn1/x509.asn1 deleted file mode 100644 index 9535e2067..000000000 --- a/lib/asn1/x509.asn1 +++ /dev/null @@ -1,79 +0,0 @@ --- $Id$ -- - -X509 DEFINITIONS ::= BEGIN - -IMPORTS heim_any FROM heim; - -Version ::= INTEGER -- { v1(0), v2(1), v3(2) } -- - -AlgorithmIdentifier ::= OBJECT IDENTIFIER - -AttributeType ::= OBJECT IDENTIFIER - -AttributeValue ::= heim_any - -Attribute ::= SEQUENCE { - type AttributeType, - value AttributeValue -} - -RelativeDistinguishedName ::= SET OF Attribute - -RDNSequence ::= SEQUENCE OF RelativeDistinguishedName - -DistinguishedName ::= RDNSequence - -Name ::= CHOICE { -- only one possibility for now -- - rdnSequence RDNSequence -} - -CertificateSerialNumber ::= INTEGER - -Time ::= CHOICE { - utcTime UTCTime, - generalTime GeneralizedTime -} - -Validity ::= SEQUENCE { - notBefore Time, - notAfter Time -} - -UniqueIdentifier ::= BIT STRING - -SubjectPublicKeyInfo ::= SEQUENCE { - algorithm AlgorithmIdentifier, - subjectPublicKey BIT STRING -} - -Extension ::= SEQUENCE { - extnID OBJECT IDENTIFIER, - critical BOOLEAN DEFAULT FALSE, - extnValue OCTET STRING -} - -Extensions ::= SEQUENCE OF Extension -- SIZE (1..MAX) - -TBSCertificate ::= SEQUENCE { - version [0] EXPLICIT Version DEFAULT 1, - serialNumber CertificateSerialNumber, - signature AlgorithmIdentifier, - issuer Name, - validity Validity, - subject Name, - subjectPublicKeyInfo SubjectPublicKeyInfo, - issuerUniqueID [1] IMPLICIT UniqueIdentifier OPTIONAL, - -- If present, version shall be v2 or v3 - subjectUniqueID [2] IMPLICIT UniqueIdentifier OPTIONAL, - -- If present, version shall be v2 or v3 - extensions [3] EXPLICIT Extensions OPTIONAL - -- If present, version shall be v3 -} - -Certificate ::= SEQUENCE { - tbsCertificate TBSCertificate, - signatureAlgorithm AlgorithmIdentifier, - signatureValue BIT STRING -} - -END