cmsdigdata.c
上传用户: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. /*
  34.  * CMS digestedData methods.
  35.  *
  36.  * $Id: cmsdigdata.c,v 1.2 2000/06/13 21:56:28 chrisk%netscape.com Exp $
  37.  */
  38. #include "cmslocal.h"
  39. #include "secitem.h"
  40. #include "secasn1.h"
  41. #include "secoid.h"
  42. #include "secerr.h"
  43. /*
  44.  * NSS_CMSDigestedData_Create - create a digestedData object (presumably for encoding)
  45.  *
  46.  * version will be set by NSS_CMSDigestedData_Encode_BeforeStart
  47.  * digestAlg is passed as parameter
  48.  * contentInfo must be filled by the user
  49.  * digest will be calculated while encoding
  50.  */
  51. NSSCMSDigestedData *
  52. NSS_CMSDigestedData_Create(NSSCMSMessage *cmsg, SECAlgorithmID *digestalg)
  53. {
  54.     void *mark;
  55.     NSSCMSDigestedData *digd;
  56.     PLArenaPool *poolp;
  57.     poolp = cmsg->poolp;
  58.     mark = PORT_ArenaMark(poolp);
  59.     digd = (NSSCMSDigestedData *)PORT_ArenaZAlloc(poolp, sizeof(NSSCMSDigestedData));
  60.     if (digd == NULL)
  61. goto loser;
  62.     digd->cmsg = cmsg;
  63.     if (SECOID_CopyAlgorithmID (poolp, &(digd->digestAlg), digestalg) != SECSuccess)
  64. goto loser;
  65.     PORT_ArenaUnmark(poolp, mark);
  66.     return digd;
  67. loser:
  68.     PORT_ArenaRelease(poolp, mark);
  69.     return NULL;
  70. }
  71. /*
  72.  * NSS_CMSDigestedData_Destroy - destroy a digestedData object
  73.  */
  74. void
  75. NSS_CMSDigestedData_Destroy(NSSCMSDigestedData *digd)
  76. {
  77.     /* everything's in a pool, so don't worry about the storage */
  78.     return;
  79. }
  80. /*
  81.  * NSS_CMSDigestedData_GetContentInfo - return pointer to digestedData object's contentInfo
  82.  */
  83. NSSCMSContentInfo *
  84. NSS_CMSDigestedData_GetContentInfo(NSSCMSDigestedData *digd)
  85. {
  86.     return &(digd->contentInfo);
  87. }
  88. /*
  89.  * NSS_CMSDigestedData_Encode_BeforeStart - do all the necessary things to a DigestedData
  90.  *     before encoding begins.
  91.  *
  92.  * In particular:
  93.  *  - set the right version number. The contentInfo's content type must be set up already.
  94.  */
  95. SECStatus
  96. NSS_CMSDigestedData_Encode_BeforeStart(NSSCMSDigestedData *digd)
  97. {
  98.     unsigned long version;
  99.     SECItem *dummy;
  100.     version = NSS_CMS_DIGESTED_DATA_VERSION_DATA;
  101.     if (NSS_CMSContentInfo_GetContentTypeTag(&(digd->contentInfo)) != SEC_OID_PKCS7_DATA)
  102. version = NSS_CMS_DIGESTED_DATA_VERSION_ENCAP;
  103.     dummy = SEC_ASN1EncodeInteger(digd->cmsg->poolp, &(digd->version), version);
  104.     return (dummy == NULL) ? SECFailure : SECSuccess;
  105. }
  106. /*
  107.  * NSS_CMSDigestedData_Encode_BeforeData - do all the necessary things to a DigestedData
  108.  *     before the encapsulated data is passed through the encoder.
  109.  *
  110.  * In detail:
  111.  *  - set up the digests if necessary
  112.  */
  113. SECStatus
  114. NSS_CMSDigestedData_Encode_BeforeData(NSSCMSDigestedData *digd)
  115. {
  116.     /* set up the digests */
  117.     if (digd->digestAlg.algorithm.len != 0 && digd->digest.len == 0) {
  118. /* if digest is already there, do nothing */
  119. digd->contentInfo.digcx = NSS_CMSDigestContext_StartSingle(&(digd->digestAlg));
  120. if (digd->contentInfo.digcx == NULL)
  121.     return SECFailure;
  122.     }
  123.     return SECSuccess;
  124. }
  125. /*
  126.  * NSS_CMSDigestedData_Encode_AfterData - do all the necessary things to a DigestedData
  127.  *     after all the encapsulated data was passed through the encoder.
  128.  *
  129.  * In detail:
  130.  *  - finish the digests
  131.  */
  132. SECStatus
  133. NSS_CMSDigestedData_Encode_AfterData(NSSCMSDigestedData *digd)
  134. {
  135.     /* did we have digest calculation going on? */
  136.     if (digd->contentInfo.digcx) {
  137. if (NSS_CMSDigestContext_FinishSingle(digd->contentInfo.digcx,
  138.     digd->cmsg->poolp, &(digd->digest)) != SECSuccess)
  139.     return SECFailure; /* error has been set by NSS_CMSDigestContext_FinishSingle */
  140. digd->contentInfo.digcx = NULL;
  141.     }
  142.     return SECSuccess;
  143. }
  144. /*
  145.  * NSS_CMSDigestedData_Decode_BeforeData - do all the necessary things to a DigestedData
  146.  *     before the encapsulated data is passed through the encoder.
  147.  *
  148.  * In detail:
  149.  *  - set up the digests if necessary
  150.  */
  151. SECStatus
  152. NSS_CMSDigestedData_Decode_BeforeData(NSSCMSDigestedData *digd)
  153. {
  154.     /* is there a digest algorithm yet? */
  155.     if (digd->digestAlg.algorithm.len == 0)
  156. return SECFailure;
  157.     digd->contentInfo.digcx = NSS_CMSDigestContext_StartSingle(&(digd->digestAlg));
  158.     if (digd->contentInfo.digcx == NULL)
  159. return SECFailure;
  160.     return SECSuccess;
  161. }
  162. /*
  163.  * NSS_CMSDigestedData_Decode_AfterData - do all the necessary things to a DigestedData
  164.  *     after all the encapsulated data was passed through the encoder.
  165.  *
  166.  * In detail:
  167.  *  - finish the digests
  168.  */
  169. SECStatus
  170. NSS_CMSDigestedData_Decode_AfterData(NSSCMSDigestedData *digd)
  171. {
  172.     /* did we have digest calculation going on? */
  173.     if (digd->contentInfo.digcx) {
  174. if (NSS_CMSDigestContext_FinishSingle(digd->contentInfo.digcx,
  175.     digd->cmsg->poolp, &(digd->cdigest)) != SECSuccess)
  176.     return SECFailure; /* error has been set by NSS_CMSDigestContext_FinishSingle */
  177. digd->contentInfo.digcx = NULL;
  178.     }
  179.     return SECSuccess;
  180. }
  181. /*
  182.  * NSS_CMSDigestedData_Decode_AfterEnd - finalize a digestedData.
  183.  *
  184.  * In detail:
  185.  *  - check the digests for equality
  186.  */
  187. SECStatus
  188. NSS_CMSDigestedData_Decode_AfterEnd(NSSCMSDigestedData *digd)
  189. {
  190.     /* did we have digest calculation going on? */
  191.     if (digd->cdigest.len != 0) {
  192. /* XXX comparision btw digest & cdigest */
  193. /* XXX set status */
  194. /* TODO!!!! */
  195.     }
  196.     return SECSuccess;
  197. }