---------------------------------------------------------------------------- -- X509.ASN -- -- ASN.1 definitions for X509 v3 certificates ---------------------------------------------------------------------------- ---- ---- ---- ---- ---- ---- ---- ---- -- C0391W: Duplicate PDU tag ---- -- A0427W: Mixed 1990 and 1994 ASN.1 syntax ---- -- A0433W: 'ANY' is invalid 1994 ASN.1 syntax ---- ---- X509 DEFINITIONS EXPLICIT TAGS ::= BEGIN BITSTRING ::= BIT STRING ---- ---- -- tag 0x03 BMPSTRING ::= BMPString ---- -- tag 0x1E (30) -------------------------------------------- -- Enhanced Key Usage Extension (2.5.29.32) -------------------------------------------- EnhancedKeyUsage ::= SEQUENCE ---- OF UsageIdentifier UsageIdentifier ::= OBJECT IDENTIFIER -------------------------------------------- -- Private Datasturcture for requests, REQUESTFLAGS -------------------------------------------- RequestFlags ::= SEQUENCE { fWriteToCSP BOOLEAN, fWriteToDS BOOLEAN, openFlags INTEGER } ---- ----------------------------------------------------------------------- -- PKCS10 Attribute to decribe the CSP Provider used ----------------------------------------------------------------------- CSPProvider ::= SEQUENCE { keySpec INTEGER, cspName BMPSTRING, signature BITSTRING } ---- ----------------------------------------------------------------------- -- Enrollment Name Value Pair Authenticated Attributes in RA PKCS7s ----------------------------------------------------------------------- EnrollmentNameValuePair ::= SEQUENCE { name BMPSTRING, value BMPSTRING } ---- END