~ubuntu-branches/ubuntu/lucid/xulrunner-1.9/lucid

« back to all changes in this revision

Viewing changes to mozilla/security/nss/lib/util/secoidt.h

  • Committer: Bazaar Package Importer
  • Author(s): Alexander Sack
  • Date: 2009-08-03 12:46:20 UTC
  • mfrom: (1.1.22 upstream)
  • Revision ID: james.westby@ubuntu.com-20090803124620-e6fe7ftw5lbswb0z
Tags: 1.9.0.13+nobinonly-0ubuntu1
* New upstream release v1.9.0.13 (FIREFOX_3_0_13_RELEASE)
  - see USN-811-1
* drop update-alternative --remove-all hack (which ensured that non-existing alternatives dont end
  up in "manual" mode in the past) now that dpkg fails on them - also the "auto" mode seems to be fixed
  - update debian/xulrunner-1.9.2.prerm.in
* enable support for "extensions" in build-system
  - update debian/create-build-system.sh

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
/*
44
44
 * secoidt.h - public data structures for ASN.1 OID functions
45
45
 *
46
 
 * $Id: secoidt.h,v 1.27 2008/02/28 04:27:30 nelson%bolyard.com Exp $
 
46
 * $Id: secoidt.h,v 1.27.34.1 2009/07/31 02:17:05 nrthomas%gmail.com Exp $
47
47
 */
48
48
 
49
49
#include "secitem.h"
446
446
 
447
447
    SEC_OID_ISO_SHA1_WITH_RSA_SIGNATURE     = 301,
448
448
 
 
449
    SEC_OID_SEED_CBC                        = 302,
 
450
 
449
451
    SEC_OID_TOTAL
450
452
} SECOidTag;
451
453
 
473
475
                                   extensions that we don't even support */
474
476
};
475
477
 
 
478
/* New Opaque extended OID table API.  
 
479
 * These are algorithm policy Flags, used with functions
 
480
 * NSS_SetAlgorithmPolicy & NSS_GetAlgorithmPolicy.
 
481
 */
 
482
#define NSS_USE_ALG_IN_CERT_SIGNATURE  0x00000001  /* CRLs and OCSP, too */
 
483
#define NSS_USE_ALG_IN_CMS_SIGNATURE   0x00000002  /* used in S/MIME */
 
484
#define NSS_USE_ALG_RESERVED           0xfffffffc  /* may be used in future */
 
485
 
 
486
/* Code MUST NOT SET or CLEAR reserved bits, and must NOT depend on them
 
487
 * being all zeros or having any other known value.  The reserved bits
 
488
 * must be ignored.
 
489
 */
 
490
 
 
491
 
476
492
#endif /* _SECOIDT_H_ */