~ubuntu-branches/ubuntu/maverick/gnutls26/maverick-updates

« back to all changes in this revision

Viewing changes to lib/minitasn1/structure.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2009-08-14 19:14:29 UTC
  • mfrom: (1.1.7 upstream) (12.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090814191429-6hovzz3oaqq101rm
Tags: 2.8.3-1
* New upstream version.
  + Stops hardcoding a hard dependency on the versions of gcrypt and tasn it
    was built against. Closes: #540449
  + Fixes CVE-2009-2730, a vulnerability related to NUL bytes in X.509
    certificate name fields. Closes: #541439        GNUTLS-SA-2009-4
    http://lists.gnu.org/archive/html/help-gnutls/2009-08/msg00011.html
* Drop 15_chainverify_expiredcert.diff, included upstream.
* Urgency high, since 541439 applies to testing, too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#ifndef _STRUCTURE_H
9
9
#define _STRUCTURE_H
10
10
 
11
 
asn1_retCode _asn1_create_static_structure(node_asn *pointer,
12
 
       char* output_file_name,char *vector_name);
13
 
 
14
 
node_asn* _asn1_copy_structure3(node_asn *source_node);
15
 
 
16
 
node_asn* _asn1_copy_structure2(node_asn *root,const char *source_name);
17
 
 
18
 
node_asn * _asn1_add_node_only(unsigned int type);
19
 
 
20
 
node_asn * _asn1_find_left(node_asn *node);
 
11
asn1_retCode _asn1_create_static_structure (ASN1_TYPE pointer,
 
12
                                            char *output_file_name,
 
13
                                            char *vector_name);
 
14
 
 
15
ASN1_TYPE _asn1_copy_structure3 (ASN1_TYPE source_node);
 
16
 
 
17
ASN1_TYPE _asn1_add_node_only (unsigned int type);
 
18
 
 
19
ASN1_TYPE _asn1_find_left (ASN1_TYPE node);
21
20
 
22
21
#endif
23