p12t.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:6k
源码类别:

CA认证

开发平台:

WINDOWS

  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.  * 
  21.  * Alternatively, the contents of this file may be used under the
  22.  * terms of the GNU General Public License Version 2 or later (the
  23.  * "GPL"), in which case the provisions of the GPL are applicable 
  24.  * instead of those above.  If you wish to allow use of your 
  25.  * version of this file only under the terms of the GPL and not to
  26.  * allow others to use your version of this file under the MPL,
  27.  * indicate your decision by deleting the provisions above and
  28.  * replace them with the notice and other provisions required by
  29.  * the GPL.  If you do not delete the provisions above, a recipient
  30.  * may use your version of this file under either the MPL or the
  31.  * GPL.
  32.  */
  33. #ifndef _P12T_H_
  34. #define _P12T_H_
  35. #include "secoid.h"
  36. #include "key.h"
  37. #include "pkcs11.h"
  38. #include "secpkcs7.h"
  39. #include "secdig.h" /* for SGNDigestInfo */
  40. #define SEC_PKCS12_VERSION 3
  41. /* structure declarations */
  42. typedef struct sec_PKCS12PFXItemStr sec_PKCS12PFXItem;
  43. typedef struct sec_PKCS12MacDataStr sec_PKCS12MacData;
  44. typedef struct sec_PKCS12AuthenticatedSafeStr sec_PKCS12AuthenticatedSafe;
  45. typedef struct sec_PKCS12SafeContentsStr sec_PKCS12SafeContents;
  46. typedef struct sec_PKCS12SafeBagStr sec_PKCS12SafeBag;
  47. typedef struct sec_PKCS12PKCS8ShroudedKeyBagStr sec_PKCS12PKCS8ShroudedKeyBag;
  48. typedef struct sec_PKCS12CertBagStr sec_PKCS12CertBag;
  49. typedef struct sec_PKCS12CRLBagStr sec_PKCS12CRLBag;
  50. typedef struct sec_PKCS12SecretBag sec_PKCS12SecretBag;
  51. typedef struct sec_PKCS12AttributeStr sec_PKCS12Attribute;
  52. struct sec_PKCS12CertBagStr {
  53.     /* what type of cert is stored? */
  54.     SECItem bagID;
  55.     /* certificate information */
  56.     union {
  57. SECItem x509Cert;
  58. SECItem SDSICert;
  59.     } value;
  60. };
  61. struct sec_PKCS12CRLBagStr {
  62.     /* what type of cert is stored? */
  63.     SECItem bagID;
  64.     /* certificate information */
  65.     union {
  66. SECItem x509CRL;
  67.     } value;
  68. };
  69. struct sec_PKCS12SecretBag {
  70.     /* what type of secret? */
  71.     SECItem secretType;
  72.     /* secret information.  ssshhhh be vewy vewy quiet. */
  73.     SECItem secretContent;
  74. };
  75. struct sec_PKCS12AttributeStr {
  76.     SECItem attrType;
  77.     SECItem **attrValue;
  78. };
  79. struct sec_PKCS12SafeBagStr {
  80.     /* What type of bag are we using? */
  81.     SECItem safeBagType;
  82.     /* Dependent upon the type of bag being used. */
  83.     union {
  84. SECKEYPrivateKeyInfo *pkcs8KeyBag;
  85. SECKEYEncryptedPrivateKeyInfo *pkcs8ShroudedKeyBag;
  86. sec_PKCS12CertBag *certBag;
  87. sec_PKCS12CRLBag *crlBag;
  88. sec_PKCS12SecretBag *secretBag;
  89. sec_PKCS12SafeContents *safeContents;
  90.     } safeBagContent;
  91.     sec_PKCS12Attribute **attribs;
  92.     /* used locally */
  93.     SECOidData *bagTypeTag;
  94.     PRArenaPool *arena;
  95.     unsigned int nAttribs;
  96.     /* used for validation/importing */
  97.     PRBool problem, noInstall, validated, hasKey, removeExisting, installed;
  98.     int error;
  99.     PRBool swapUnicodeBytes;
  100.     PK11SlotInfo *slot;
  101.     SECItem *pwitem;
  102.     PRBool oldBagType;
  103. };
  104.     
  105. struct sec_PKCS12SafeContentsStr {
  106.     sec_PKCS12SafeBag **safeBags;
  107.     SECItem **encodedSafeBags;
  108.     
  109.     /* used locally */
  110.     PRArenaPool *arena;
  111.     unsigned int bagCount;
  112. };
  113. struct sec_PKCS12MacDataStr {
  114.     SGNDigestInfo safeMac;
  115.     SECItem macSalt;
  116.     SECItem iter;
  117. };
  118. struct sec_PKCS12PFXItemStr {
  119.     SECItem version;
  120.     /* Content type will either be Data (password integrity mode)
  121.      * or signedData (public-key integrity mode)
  122.      */
  123.     SEC_PKCS7ContentInfo *authSafe;
  124.     SECItem encodedAuthSafe;
  125.     /* Only present in password integrity mode */
  126.     sec_PKCS12MacData macData;
  127.     SECItem encodedMacData;
  128. };
  129. struct sec_PKCS12AuthenticatedSafeStr {
  130.     /* Content type will either be encryptedData (password privacy mode)
  131.      * or envelopedData (public-key privacy mode)
  132.      */
  133.     SEC_PKCS7ContentInfo **safes;
  134.     SECItem **encodedSafes;
  135.     /* used locally */
  136.     unsigned int safeCount;
  137.     SECItem dummySafe;
  138. };
  139. extern const SEC_ASN1Template sec_PKCS12PFXItemTemplate[];
  140. extern const SEC_ASN1Template sec_PKCS12MacDataTemplate[];
  141. extern const SEC_ASN1Template sec_PKCS12AuthenticatedSafeTemplate[];
  142. extern const SEC_ASN1Template sec_PKCS12SafeContentsTemplate[];
  143. extern const SEC_ASN1Template sec_PKCS12SafeContentsDecodeTemplate[];
  144. extern const SEC_ASN1Template sec_PKCS12NestedSafeContentsDecodeTemplate[];
  145. extern const SEC_ASN1Template sec_PKCS12CertBagTemplate[];
  146. extern const SEC_ASN1Template sec_PKCS12CRLBagTemplate[];
  147. extern const SEC_ASN1Template sec_PKCS12SecretBagTemplate[];
  148. extern const SEC_ASN1Template sec_PKCS12PointerToCertBagTemplate[];
  149. extern const SEC_ASN1Template sec_PKCS12PointerToCRLBagTemplate[];
  150. extern const SEC_ASN1Template sec_PKCS12PointerToSecretBagTemplate[];
  151. extern const SEC_ASN1Template sec_PKCS12PointerToSafeContentsTemplate[];
  152. extern const SEC_ASN1Template sec_PKCS12AttributeTemplate[];
  153. extern const SEC_ASN1Template sec_PKCS12PointerToContentInfoTemplate[];
  154. extern const SEC_ASN1Template sec_PKCS12SafeBagTemplate[];
  155. #endif