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

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. #include "pkcs12.h"
  34. #include "secitem.h"
  35. #include "secport.h"
  36. #include "secder.h"
  37. #include "secoid.h"
  38. #include "p12local.h"
  39. #include "secerr.h"
  40. /* allocate space for a PFX structure and set up initial
  41.  * arena pool.  pfx structure is cleared and a pointer to
  42.  * the new structure is returned.
  43.  */
  44. SEC_PKCS12PFXItem *
  45. sec_pkcs12_new_pfx(void)
  46. {
  47.     SEC_PKCS12PFXItem   *pfx = NULL;
  48.     PRArenaPool     *poolp = NULL;
  49.     poolp = PORT_NewArena(SEC_ASN1_DEFAULT_ARENA_SIZE); /* XXX Different size? */
  50.     if(poolp == NULL)
  51. goto loser;
  52.     pfx = (SEC_PKCS12PFXItem *)PORT_ArenaZAlloc(poolp, 
  53. sizeof(SEC_PKCS12PFXItem));
  54.     if(pfx == NULL)
  55. goto loser;
  56.     pfx->poolp = poolp;
  57.     return pfx;
  58. loser:
  59.     PORT_FreeArena(poolp, PR_TRUE);
  60.     return NULL;
  61. }
  62. /* allocate space for a PFX structure and set up initial
  63.  * arena pool.  pfx structure is cleared and a pointer to
  64.  * the new structure is returned.
  65.  */
  66. SEC_PKCS12AuthenticatedSafe *
  67. sec_pkcs12_new_asafe(PRArenaPool *poolp)
  68. {
  69.     SEC_PKCS12AuthenticatedSafe  *asafe = NULL;
  70.     void *mark;
  71.     mark = PORT_ArenaMark(poolp);
  72.     asafe = (SEC_PKCS12AuthenticatedSafe *)PORT_ArenaZAlloc(poolp, 
  73. sizeof(SEC_PKCS12AuthenticatedSafe));
  74.     if(asafe == NULL)
  75. goto loser;
  76.     asafe->poolp = poolp;
  77.     PORT_Memset(&asafe->old_baggage, 0, sizeof(SEC_PKCS7ContentInfo));
  78.     PORT_ArenaUnmark(poolp, mark);
  79.     return asafe;
  80. loser:
  81.     PORT_ArenaRelease(poolp, mark);
  82.     return NULL;
  83. }
  84. /* create a safe contents structure with a list of
  85.  * length 0 with the first element being NULL 
  86.  */
  87. SEC_PKCS12SafeContents *
  88. sec_pkcs12_create_safe_contents(PRArenaPool *poolp)
  89. {
  90.     SEC_PKCS12SafeContents *safe;
  91.     void *mark;
  92.     if(poolp == NULL)
  93. return NULL;
  94.     /* allocate structure */
  95.     mark = PORT_ArenaMark(poolp);
  96.     safe = (SEC_PKCS12SafeContents *)PORT_ArenaZAlloc(poolp, 
  97. sizeof(SEC_PKCS12SafeContents));
  98.     if(safe == NULL)
  99.     {
  100. PORT_SetError(SEC_ERROR_NO_MEMORY);
  101. PORT_ArenaRelease(poolp, mark);
  102. return NULL;
  103.     }
  104.     /* init list */
  105.     safe->contents = (SEC_PKCS12SafeBag**)PORT_ArenaZAlloc(poolp, 
  106.   sizeof(SEC_PKCS12SafeBag *));
  107.     if(safe->contents == NULL) {
  108. PORT_SetError(SEC_ERROR_NO_MEMORY);
  109. PORT_ArenaRelease(poolp, mark);
  110. return NULL;
  111.     }
  112.     safe->contents[0] = NULL;
  113.     safe->poolp       = poolp;
  114.     safe->safe_size   = 0;
  115.     PORT_ArenaUnmark(poolp, mark);
  116.     return safe;
  117. }
  118. /* create a new external bag which is appended onto the list
  119.  * of bags in baggage.  the bag is created in the same arena
  120.  * as baggage
  121.  */
  122. SEC_PKCS12BaggageItem *
  123. sec_pkcs12_create_external_bag(SEC_PKCS12Baggage *luggage)
  124. {
  125.     void *dummy, *mark;
  126.     SEC_PKCS12BaggageItem *bag;
  127.     if(luggage == NULL) {
  128. return NULL;
  129.     }
  130.     mark = PORT_ArenaMark(luggage->poolp);
  131.     /* allocate space for null terminated bag list */
  132.     if(luggage->bags == NULL) {
  133. luggage->bags=(SEC_PKCS12BaggageItem**)PORT_ArenaZAlloc(luggage->poolp, 
  134. sizeof(SEC_PKCS12BaggageItem *));
  135. if(luggage->bags == NULL) {
  136.     goto loser;
  137. }
  138. luggage->luggage_size = 0;
  139.     }
  140.     /* grow the list */    
  141.     dummy = PORT_ArenaGrow(luggage->poolp, luggage->bags,
  142.      sizeof(SEC_PKCS12BaggageItem *) * (luggage->luggage_size + 1),
  143.      sizeof(SEC_PKCS12BaggageItem *) * (luggage->luggage_size + 2));
  144.     if(dummy == NULL) {
  145. goto loser;
  146.     }
  147.     luggage->bags = (SEC_PKCS12BaggageItem**)dummy;
  148.     luggage->bags[luggage->luggage_size] = 
  149.      (SEC_PKCS12BaggageItem *)PORT_ArenaZAlloc(luggage->poolp,
  150.      sizeof(SEC_PKCS12BaggageItem));
  151.     if(luggage->bags[luggage->luggage_size] == NULL) {
  152. goto loser;
  153.     }
  154.     /* create new bag and append it to the end */
  155.     bag = luggage->bags[luggage->luggage_size];
  156.     bag->espvks = (SEC_PKCS12ESPVKItem **)PORT_ArenaZAlloc(
  157.      luggage->poolp,
  158.      sizeof(SEC_PKCS12ESPVKItem *));
  159.     bag->unencSecrets = (SEC_PKCS12SafeBag **)PORT_ArenaZAlloc(
  160.      luggage->poolp,
  161.      sizeof(SEC_PKCS12SafeBag *));
  162.     if((bag->espvks == NULL) || (bag->unencSecrets == NULL)) {
  163. goto loser;
  164.     }
  165.     bag->poolp = luggage->poolp;
  166.     luggage->luggage_size++;
  167.     luggage->bags[luggage->luggage_size] = NULL;
  168.     bag->espvks[0] = NULL;
  169.     bag->unencSecrets[0] = NULL;
  170.     bag->nEspvks = bag->nSecrets = 0;
  171.     PORT_ArenaUnmark(luggage->poolp, mark);
  172.     return bag;
  173. loser:
  174.     PORT_ArenaRelease(luggage->poolp, mark);
  175.     PORT_SetError(SEC_ERROR_NO_MEMORY);
  176.     return NULL;
  177. }
  178. /* creates a baggage witha NULL terminated 0 length list */
  179. SEC_PKCS12Baggage *
  180. sec_pkcs12_create_baggage(PRArenaPool *poolp)
  181. {
  182.     SEC_PKCS12Baggage *luggage;
  183.     void *mark;
  184.     if(poolp == NULL)
  185. return NULL;
  186.     mark = PORT_ArenaMark(poolp);
  187.     /* allocate bag */
  188.     luggage = (SEC_PKCS12Baggage *)PORT_ArenaZAlloc(poolp, 
  189. sizeof(SEC_PKCS12Baggage));
  190.     if(luggage == NULL)
  191.     {
  192. PORT_SetError(SEC_ERROR_NO_MEMORY);
  193. PORT_ArenaRelease(poolp, mark);
  194. return NULL;
  195.     }
  196.     /* init list */
  197.     luggage->bags = (SEC_PKCS12BaggageItem **)PORT_ArenaZAlloc(poolp,
  198.      sizeof(SEC_PKCS12BaggageItem *));
  199.     if(luggage->bags == NULL) {
  200. PORT_SetError(SEC_ERROR_NO_MEMORY);
  201. PORT_ArenaRelease(poolp, mark);
  202. return NULL;
  203.     }
  204.     luggage->bags[0] = NULL;
  205.     luggage->luggage_size = 0;
  206.     luggage->poolp = poolp;
  207.     PORT_ArenaUnmark(poolp, mark);
  208.     return luggage;
  209. }
  210. /* free pfx structure and associated items in the arena */
  211. void 
  212. SEC_PKCS12DestroyPFX(SEC_PKCS12PFXItem *pfx)
  213. {
  214.     if (pfx != NULL && pfx->poolp != NULL)
  215.     {
  216. PORT_FreeArena(pfx->poolp, PR_TRUE);
  217.     }
  218. }