~ubuntu-branches/ubuntu/lucid/seamonkey/lucid-security

« back to all changes in this revision

Viewing changes to security/nss-fips/lib/crmf/cmmfi.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-07-29 21:29:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729212902-spm9kpvchp9udwbw
Tags: 1.1.11+nobinonly-0ubuntu1
* New security upstream release: 1.1.11 (LP: #218534)
  Fixes USN-602-1, USN-619-1, USN-623-1 and USN-629-1
* Refresh diverged patch:
  - update debian/patches/80_security_build.patch
* Fix FTBFS with missing -lfontconfig
  - add debian/patches/11_fix_ftbfs_with_fontconfig.patch
  - update debian/patches/series
* Build with default gcc (hardy: 4.2, intrepid: 4.3)
  - update debian/rules
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8 -*-*/
 
2
/* ***** BEGIN LICENSE BLOCK *****
 
3
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 
4
 *
 
5
 * The contents of this file are subject to the Mozilla Public License Version
 
6
 * 1.1 (the "License"); you may not use this file except in compliance with
 
7
 * the License. You may obtain a copy of the License at
 
8
 * http://www.mozilla.org/MPL/
 
9
 *
 
10
 * Software distributed under the License is distributed on an "AS IS" basis,
 
11
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 
12
 * for the specific language governing rights and limitations under the
 
13
 * License.
 
14
 *
 
15
 * The Original Code is the Netscape security libraries.
 
16
 *
 
17
 * The Initial Developer of the Original Code is
 
18
 * Netscape Communications Corporation.
 
19
 * Portions created by the Initial Developer are Copyright (C) 1994-2000
 
20
 * the Initial Developer. All Rights Reserved.
 
21
 *
 
22
 * Contributor(s):
 
23
 *
 
24
 * Alternatively, the contents of this file may be used under the terms of
 
25
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 
26
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 
27
 * in which case the provisions of the GPL or the LGPL are applicable instead
 
28
 * of those above. If you wish to allow use of your version of this file only
 
29
 * under the terms of either the GPL or the LGPL, and not to allow others to
 
30
 * use your version of this file under the terms of the MPL, indicate your
 
31
 * decision by deleting the provisions above and replace them with the notice
 
32
 * and other provisions required by the GPL or the LGPL. If you do not delete
 
33
 * the provisions above, a recipient may use your version of this file under
 
34
 * the terms of any one of the MPL, the GPL or the LGPL.
 
35
 *
 
36
 * ***** END LICENSE BLOCK ***** */
 
37
 
 
38
/*
 
39
 * These are the definitions needed by the library internally to implement
 
40
 * CMMF.  Most of these will be helper utilities for manipulating internal
 
41
 * data strucures.
 
42
 */
 
43
#ifndef _CMMFI_H_
 
44
#define _CMMFI_H_
 
45
#include "cmmfit.h"
 
46
#include "crmfi.h"
 
47
 
 
48
#define CMMF_MAX_CHALLENGES 10
 
49
#define CMMF_MAX_KEY_PAIRS  50
 
50
 
 
51
/*
 
52
 * Some templates that the code will need to implement CMMF.
 
53
 */
 
54
extern const SEC_ASN1Template CMMFCertOrEncCertCertificateTemplate[];
 
55
extern const SEC_ASN1Template CMMFCertOrEncCertEncryptedCertTemplate[];
 
56
extern const SEC_ASN1Template CMMFPOPODecKeyRespContentTemplate[];
 
57
extern const SEC_ASN1Template CMMFRandTemplate[];
 
58
extern const SEC_ASN1Template CMMFSequenceOfCertsTemplate[];
 
59
extern const SEC_ASN1Template CMMFPKIStatusInfoTemplate[];
 
60
extern const SEC_ASN1Template CMMFCertifiedKeyPairTemplate[];
 
61
 
 
62
 
 
63
/*
 
64
 * Some utility functions that are shared by multiple files in this 
 
65
 * implementation.
 
66
 */
 
67
 
 
68
extern SECStatus cmmf_CopyCertResponse (PRArenaPool      *poolp, 
 
69
                                        CMMFCertResponse *dest, 
 
70
                                        CMMFCertResponse *src);
 
71
 
 
72
extern SECStatus cmmf_CopyPKIStatusInfo (PRArenaPool       *poolp, 
 
73
                                         CMMFPKIStatusInfo *dest,
 
74
                                         CMMFPKIStatusInfo *src);
 
75
 
 
76
extern SECStatus cmmf_CopyCertifiedKeyPair(PRArenaPool          *poolp, 
 
77
                                           CMMFCertifiedKeyPair *dest,
 
78
                                           CMMFCertifiedKeyPair *src);
 
79
 
 
80
extern SECStatus cmmf_DestroyPKIStatusInfo(CMMFPKIStatusInfo *info, 
 
81
                                           PRBool freeit);
 
82
 
 
83
extern SECStatus cmmf_DestroyCertOrEncCert(CMMFCertOrEncCert *certOrEncCert, 
 
84
                                           PRBool freeit);
 
85
 
 
86
extern SECStatus cmmf_PKIStatusInfoSetStatus(CMMFPKIStatusInfo    *statusInfo,
 
87
                                             PRArenaPool          *poolp,
 
88
                                             CMMFPKIStatus         inStatus);
 
89
 
 
90
extern SECStatus cmmf_ExtractCertsFromList(CERTCertList      *inCertList,
 
91
                                           PRArenaPool       *poolp,
 
92
                                           CERTCertificate ***certArray);
 
93
 
 
94
extern SECStatus 
 
95
       cmmf_CertOrEncCertSetCertificate(CMMFCertOrEncCert *certOrEncCert,
 
96
                                        PRArenaPool       *poolp,
 
97
                                        CERTCertificate   *inCert);
 
98
 
 
99
extern CMMFPKIStatus 
 
100
       cmmf_PKIStatusInfoGetStatus(CMMFPKIStatusInfo *inStatus);
 
101
 
 
102
extern CERTCertList*
 
103
       cmmf_MakeCertList(CERTCertificate **inCerts);
 
104
 
 
105
extern CERTCertificate*
 
106
cmmf_CertOrEncCertGetCertificate(CMMFCertOrEncCert *certOrEncCert,
 
107
                                 CERTCertDBHandle  *certdb);
 
108
 
 
109
extern SECStatus
 
110
cmmf_decode_process_cert_response(PRArenaPool      *poolp, 
 
111
                                  CERTCertDBHandle *db,
 
112
                                  CMMFCertResponse *inCertResp);
 
113
 
 
114
extern SECStatus
 
115
cmmf_decode_process_certified_key_pair(PRArenaPool          *poolp,
 
116
                                       CERTCertDBHandle     *db,
 
117
                                       CMMFCertifiedKeyPair *inCertKeyPair);
 
118
 
 
119
extern SECStatus
 
120
cmmf_user_encode(void *src, CRMFEncoderOutputCallback inCallback, void *inArg,
 
121
                 const SEC_ASN1Template *inTemplate);
 
122
 
 
123
extern SECStatus
 
124
cmmf_copy_secitem (PRArenaPool *poolp, SECItem *dest, SECItem *src);
 
125
#endif /*_CMMFI_H_*/
 
126
 
 
127
 
 
128
 
 
129
 
 
130