~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/security/manager/ssl/src/nsNSSASN1Object.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The contents of this file are subject to the Mozilla Public
 
3
 * License Version 1.1 (the "License"); you may not use this file
 
4
 * except in compliance with the License. You may obtain a copy of
 
5
 * the License at http://www.mozilla.org/MPL/
 
6
 * 
 
7
 * Software distributed under the License is distributed on an "AS
 
8
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
 * implied. See the License for the specific language governing
 
10
 * rights and limitations under the License.
 
11
 * 
 
12
 * The Original Code is the Netscape security libraries.
 
13
 * 
 
14
 * The Initial Developer of the Original Code is Netscape
 
15
 * Communications Corporation.  Portions created by Netscape are 
 
16
 * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
 
17
 * Rights Reserved.
 
18
 * 
 
19
 * Contributor(s):
 
20
 *  Javier Delgadillo <javi@netscape.com>
 
21
 * 
 
22
 * Alternatively, the contents of this file may be used under the
 
23
 * terms of the GNU General Public License Version 2 or later (the
 
24
 * "GPL"), in which case the provisions of the GPL are applicable 
 
25
 * instead of those above.  If you wish to allow use of your 
 
26
 * version of this file only under the terms of the GPL and not to
 
27
 * allow others to use your version of this file under the MPL,
 
28
 * indicate your decision by deleting the provisions above and
 
29
 * replace them with the notice and other provisions required by
 
30
 * the GPL.  If you do not delete the provisions above, a recipient
 
31
 * may use your version of this file under either the MPL or the
 
32
 * GPL.
 
33
 */
 
34
#ifndef _NSSASN_H_
 
35
#define _NSSASN_H_
 
36
 
 
37
#include "nscore.h"
 
38
#include "nsIX509Cert.h"
 
39
#include "nsCOMPtr.h"
 
40
#include "nsString.h"
 
41
#include "nsIASN1Sequence.h"
 
42
#include "nsIASN1PrintableItem.h"
 
43
#include "nsIArray.h"
 
44
 
 
45
//
 
46
// Read comments in nsIX509Cert.idl for a description of the desired
 
47
// purpose for this ASN1 interface implementation.
 
48
//
 
49
 
 
50
class nsNSSASN1Sequence : public nsIASN1Sequence
 
51
{
 
52
public:
 
53
  NS_DECL_ISUPPORTS
 
54
  NS_DECL_NSIASN1SEQUENCE
 
55
  NS_DECL_NSIASN1OBJECT
 
56
 
 
57
  nsNSSASN1Sequence();
 
58
  virtual ~nsNSSASN1Sequence();
 
59
  /* additional members */
 
60
private:
 
61
  nsCOMPtr<nsIMutableArray> mASN1Objects;
 
62
  nsString mDisplayName;
 
63
  nsString mDisplayValue;
 
64
  PRUint32 mType;
 
65
  PRUint32 mTag;
 
66
  PRBool   mIsValidContainer;
 
67
  PRBool   mIsExpanded;
 
68
};
 
69
 
 
70
class nsNSSASN1PrintableItem : public nsIASN1PrintableItem
 
71
{
 
72
public:
 
73
  NS_DECL_ISUPPORTS
 
74
  NS_DECL_NSIASN1PRINTABLEITEM
 
75
  NS_DECL_NSIASN1OBJECT
 
76
 
 
77
  nsNSSASN1PrintableItem();
 
78
  virtual ~nsNSSASN1PrintableItem();
 
79
  /* additional members */
 
80
private:
 
81
  nsString mDisplayName;
 
82
  nsString mValue;
 
83
  PRUint32 mType;
 
84
  PRUint32 mTag;
 
85
  unsigned char *mData;
 
86
  PRUint32       mLen;
 
87
};
 
88
 
 
89
nsresult CreateFromDER(unsigned char *data,
 
90
                       unsigned int   len,
 
91
                       nsIASN1Object **retval);
 
92
#endif //_NSSASN_H_