~ubuntu-branches/ubuntu/lucid/openssl/lucid-security

« back to all changes in this revision

Viewing changes to crypto/ocsp/ocsp_asn.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2007-03-10 17:11:46 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20070310171146-uo85b7ii5pi1unm2
Tags: upstream-0.9.8e
ImportĀ upstreamĀ versionĀ 0.9.8e

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
ASN1_SEQUENCE(OCSP_SIGNATURE) = {
63
63
        ASN1_SIMPLE(OCSP_SIGNATURE, signatureAlgorithm, X509_ALGOR),
64
64
        ASN1_SIMPLE(OCSP_SIGNATURE, signature, ASN1_BIT_STRING),
65
 
        ASN1_EXP_SEQUENCE_OF(OCSP_SIGNATURE, certs, X509, 0)
 
65
        ASN1_EXP_SEQUENCE_OF_OPT(OCSP_SIGNATURE, certs, X509, 0)
66
66
} ASN1_SEQUENCE_END(OCSP_SIGNATURE)
67
67
 
68
68
IMPLEMENT_ASN1_FUNCTIONS(OCSP_SIGNATURE)