~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to crypto/x509v3/v3_int.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * project 1999.
4
4
 */
5
5
/* ====================================================================
6
 
 * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
 
6
 * Copyright (c) 1999-2004 The OpenSSL Project.  All rights reserved.
7
7
 *
8
8
 * Redistribution and use in source and binary forms, with or without
9
9
 * modification, are permitted provided that the following conditions
61
61
#include <openssl/x509v3.h>
62
62
 
63
63
X509V3_EXT_METHOD v3_crl_num = { 
64
 
NID_crl_number, 0, ASN1_ITEM_ref(ASN1_INTEGER),
65
 
0,0,0,0,
66
 
(X509V3_EXT_I2S)i2s_ASN1_INTEGER,
67
 
0,
68
 
0,0,0,0, NULL};
 
64
        NID_crl_number, 0, ASN1_ITEM_ref(ASN1_INTEGER),
 
65
        0,0,0,0,
 
66
        (X509V3_EXT_I2S)i2s_ASN1_INTEGER,
 
67
        0,
 
68
        0,0,0,0, NULL};
 
69
 
 
70
X509V3_EXT_METHOD v3_delta_crl = { 
 
71
        NID_delta_crl, 0, ASN1_ITEM_ref(ASN1_INTEGER),
 
72
        0,0,0,0,
 
73
        (X509V3_EXT_I2S)i2s_ASN1_INTEGER,
 
74
        0,
 
75
        0,0,0,0, NULL};
69
76