~andreserl/ubuntu/lucid/bind9/bind9-apport-533601

« back to all changes in this revision

Viewing changes to lib/dns/dst_parse.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Internet Software Consortium, Inc, InterNIC, LaMont Jones
  • Date: 2009-07-28 22:03:14 UTC
  • mfrom: (1.6.1 upstream) (10.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090728220314-9wztcj047dxvvhdh
Tags: 1:9.6.1.dfsg.P1-1
[Internet Software Consortium, Inc]

* A specially crafted update packet will cause named to exit. 
  CVE-2009-0696, CERT VU#725188.  Closes: #538975

[InterNIC]

* Update db.root hints file.

[LaMont Jones]

* Move default zone definitions from named.conf to named.conf.default-zones.
   Closes: #492308
* use start-stop-daemon if rndc stop fails.  Closes: #536487
* lwresd: pidfile name was wrong in init script.  Closes: #527137

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
30
30
 */
31
31
 
32
 
/* $Id: dst_parse.h,v 1.8.92.2 2008/05/15 23:46:37 tbox Exp $ */
 
32
/* $Id: dst_parse.h,v 1.11 2008/05/15 00:50:26 each Exp $ */
33
33
 
34
34
/*! \file */
35
35
#ifndef DST_DST_PARSE_H
50
50
#define TAG(alg, off)           (((alg) << TAG_SHIFT) + (off))
51
51
 
52
52
/* These are used by both RSA-MD5 and RSA-SHA1 */
53
 
#define RSA_NTAGS               8
 
53
#define RSA_NTAGS               11
54
54
#define TAG_RSA_MODULUS         ((DST_ALG_RSAMD5 << TAG_SHIFT) + 0)
55
55
#define TAG_RSA_PUBLICEXPONENT  ((DST_ALG_RSAMD5 << TAG_SHIFT) + 1)
56
56
#define TAG_RSA_PRIVATEEXPONENT ((DST_ALG_RSAMD5 << TAG_SHIFT) + 2)
59
59
#define TAG_RSA_EXPONENT1       ((DST_ALG_RSAMD5 << TAG_SHIFT) + 5)
60
60
#define TAG_RSA_EXPONENT2       ((DST_ALG_RSAMD5 << TAG_SHIFT) + 6)
61
61
#define TAG_RSA_COEFFICIENT     ((DST_ALG_RSAMD5 << TAG_SHIFT) + 7)
 
62
#define TAG_RSA_ENGINE          ((DST_ALG_RSAMD5 << TAG_SHIFT) + 8)
 
63
#define TAG_RSA_LABEL           ((DST_ALG_RSAMD5 << TAG_SHIFT) + 9)
 
64
#define TAG_RSA_PIN             ((DST_ALG_RSAMD5 << TAG_SHIFT) + 10)
62
65
 
63
66
#define DH_NTAGS                4
64
67
#define TAG_DH_PRIME            ((DST_ALG_DH << TAG_SHIFT) + 0)