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

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 contentInfo methods.
  35.  *
  36.  * $Id: cmscinfo.c,v 1.2 2000/06/13 21:56:27 chrisk%netscape.com Exp $
  37.  */
  38. #include "cmslocal.h"
  39. #include "pk11func.h"
  40. #include "secitem.h"
  41. #include "secoid.h"
  42. #include "secerr.h"
  43. /*
  44.  * NSS_CMSContentInfo_Create - create a content info
  45.  *
  46.  * version is set in the _Finalize procedures for each content type
  47.  */
  48. /*
  49.  * NSS_CMSContentInfo_Destroy - destroy a CMS contentInfo and all of its sub-pieces.
  50.  */
  51. void
  52. NSS_CMSContentInfo_Destroy(NSSCMSContentInfo *cinfo)
  53. {
  54.     SECOidTag kind;
  55.     kind = NSS_CMSContentInfo_GetContentTypeTag(cinfo);
  56.     switch (kind) {
  57.     case SEC_OID_PKCS7_ENVELOPED_DATA:
  58. NSS_CMSEnvelopedData_Destroy(cinfo->content.envelopedData);
  59. break;
  60.       case SEC_OID_PKCS7_SIGNED_DATA:
  61. NSS_CMSSignedData_Destroy(cinfo->content.signedData);
  62. break;
  63.       case SEC_OID_PKCS7_ENCRYPTED_DATA:
  64. NSS_CMSEncryptedData_Destroy(cinfo->content.encryptedData);
  65. break;
  66.       case SEC_OID_PKCS7_DIGESTED_DATA:
  67. NSS_CMSDigestedData_Destroy(cinfo->content.digestedData);
  68. break;
  69.       default:
  70. /* XXX Anything else that needs to be "manually" freed/destroyed? */
  71. break;
  72.     }
  73.     if (cinfo->bulkkey)
  74. PK11_FreeSymKey(cinfo->bulkkey);
  75.     
  76.     /* we live in a pool, so no need to worry about storage */
  77. }
  78. /*
  79.  * NSS_CMSContentInfo_GetChildContentInfo - get content's contentInfo (if it exists)
  80.  */
  81. NSSCMSContentInfo *
  82. NSS_CMSContentInfo_GetChildContentInfo(NSSCMSContentInfo *cinfo)
  83. {
  84.     switch (NSS_CMSContentInfo_GetContentTypeTag(cinfo)) {
  85.     case SEC_OID_PKCS7_DATA:
  86. return NULL;
  87.     case SEC_OID_PKCS7_SIGNED_DATA:
  88. return &(cinfo->content.signedData->contentInfo);
  89.     case SEC_OID_PKCS7_ENVELOPED_DATA:
  90. return &(cinfo->content.envelopedData->contentInfo);
  91.     case SEC_OID_PKCS7_DIGESTED_DATA:
  92. return &(cinfo->content.digestedData->contentInfo);
  93.     case SEC_OID_PKCS7_ENCRYPTED_DATA:
  94. return &(cinfo->content.encryptedData->contentInfo);
  95.     default:
  96. return NULL;
  97.     }
  98. }
  99. /*
  100.  * NSS_CMSContentInfo_SetContent - set content type & content
  101.  */
  102. SECStatus
  103. NSS_CMSContentInfo_SetContent(NSSCMSMessage *cmsg, NSSCMSContentInfo *cinfo, SECOidTag type, void *ptr)
  104. {
  105.     SECStatus rv;
  106.     cinfo->contentTypeTag = SECOID_FindOIDByTag(type);
  107.     if (cinfo->contentTypeTag == NULL)
  108. return SECFailure;
  109.     
  110.     /* do not copy the oid, just create a reference */
  111.     rv = SECITEM_CopyItem (cmsg->poolp, &(cinfo->contentType), &(cinfo->contentTypeTag->oid));
  112.     if (rv != SECSuccess)
  113. return SECFailure;
  114.     cinfo->content.pointer = ptr;
  115.     if (type != SEC_OID_PKCS7_DATA) {
  116. /* as we always have some inner data,
  117.  * we need to set it to something, just to fool the encoder enough to work on it
  118.  * and get us into nss_cms_encoder_notify at that point */
  119. cinfo->rawContent = SECITEM_AllocItem(cmsg->poolp, NULL, 1);
  120. if (cinfo->rawContent == NULL) {
  121.     PORT_SetError(SEC_ERROR_NO_MEMORY);
  122.     return SECFailure;
  123. }
  124.     }
  125.     return SECSuccess;
  126. }
  127. /*
  128.  * NSS_CMSContentInfo_SetContent_XXXX - typesafe wrappers for NSS_CMSContentInfo_SetContent
  129.  */
  130. /*
  131.  * data == NULL -> pass in data via NSS_CMSEncoder_Update
  132.  * data != NULL -> take this data
  133.  */
  134. SECStatus
  135. NSS_CMSContentInfo_SetContent_Data(NSSCMSMessage *cmsg, NSSCMSContentInfo *cinfo, SECItem *data, PRBool detached)
  136. {
  137.     if (NSS_CMSContentInfo_SetContent(cmsg, cinfo, SEC_OID_PKCS7_DATA, (void *)data) != SECSuccess)
  138. return SECFailure;
  139.     cinfo->rawContent = (detached) ? 
  140.     NULL : (data) ? 
  141. data : SECITEM_AllocItem(cmsg->poolp, NULL, 1);
  142.     return SECSuccess;
  143. }
  144. SECStatus
  145. NSS_CMSContentInfo_SetContent_SignedData(NSSCMSMessage *cmsg, NSSCMSContentInfo *cinfo, NSSCMSSignedData *sigd)
  146. {
  147.     return NSS_CMSContentInfo_SetContent(cmsg, cinfo, SEC_OID_PKCS7_SIGNED_DATA, (void *)sigd);
  148. }
  149. SECStatus
  150. NSS_CMSContentInfo_SetContent_EnvelopedData(NSSCMSMessage *cmsg, NSSCMSContentInfo *cinfo, NSSCMSEnvelopedData *envd)
  151. {
  152.     return NSS_CMSContentInfo_SetContent(cmsg, cinfo, SEC_OID_PKCS7_ENVELOPED_DATA, (void *)envd);
  153. }
  154. SECStatus
  155. NSS_CMSContentInfo_SetContent_DigestedData(NSSCMSMessage *cmsg, NSSCMSContentInfo *cinfo, NSSCMSDigestedData *digd)
  156. {
  157.     return NSS_CMSContentInfo_SetContent(cmsg, cinfo, SEC_OID_PKCS7_DIGESTED_DATA, (void *)digd);
  158. }
  159. SECStatus
  160. NSS_CMSContentInfo_SetContent_EncryptedData(NSSCMSMessage *cmsg, NSSCMSContentInfo *cinfo, NSSCMSEncryptedData *encd)
  161. {
  162.     return NSS_CMSContentInfo_SetContent(cmsg, cinfo, SEC_OID_PKCS7_ENCRYPTED_DATA, (void *)encd);
  163. }
  164. /*
  165.  * NSS_CMSContentInfo_GetContent - get pointer to inner content
  166.  *
  167.  * needs to be casted...
  168.  */
  169. void *
  170. NSS_CMSContentInfo_GetContent(NSSCMSContentInfo *cinfo)
  171. {
  172.     switch (cinfo->contentTypeTag->offset) {
  173.     case SEC_OID_PKCS7_DATA:
  174.     case SEC_OID_PKCS7_SIGNED_DATA:
  175.     case SEC_OID_PKCS7_ENVELOPED_DATA:
  176.     case SEC_OID_PKCS7_DIGESTED_DATA:
  177.     case SEC_OID_PKCS7_ENCRYPTED_DATA:
  178. return cinfo->content.pointer;
  179.     default:
  180. return NULL;
  181.     }
  182. }
  183. /* 
  184.  * NSS_CMSContentInfo_GetInnerContent - get pointer to innermost content
  185.  *
  186.  * this is typically only called by NSS_CMSMessage_GetContent()
  187.  */
  188. SECItem *
  189. NSS_CMSContentInfo_GetInnerContent(NSSCMSContentInfo *cinfo)
  190. {
  191.     NSSCMSContentInfo *ccinfo;
  192.     switch (NSS_CMSContentInfo_GetContentTypeTag(cinfo)) {
  193.     case SEC_OID_PKCS7_DATA:
  194. return cinfo->content.data; /* end of recursion - every message has to have a data cinfo */
  195.     case SEC_OID_PKCS7_DIGESTED_DATA:
  196.     case SEC_OID_PKCS7_ENCRYPTED_DATA:
  197.     case SEC_OID_PKCS7_ENVELOPED_DATA:
  198.     case SEC_OID_PKCS7_SIGNED_DATA:
  199. if ((ccinfo = NSS_CMSContentInfo_GetChildContentInfo(cinfo)) == NULL)
  200.     break;
  201. return NSS_CMSContentInfo_GetContent(ccinfo);
  202.     default:
  203. PORT_Assert(0);
  204. break;
  205.     }
  206.     return NULL;
  207. }
  208. /*
  209.  * NSS_CMSContentInfo_GetContentType{Tag,OID} - find out (saving pointer to lookup result
  210.  * for future reference) and return the inner content type.
  211.  */
  212. SECOidTag
  213. NSS_CMSContentInfo_GetContentTypeTag(NSSCMSContentInfo *cinfo)
  214. {
  215.     if (cinfo->contentTypeTag == NULL)
  216. cinfo->contentTypeTag = SECOID_FindOID(&(cinfo->contentType));
  217.     if (cinfo->contentTypeTag == NULL)
  218. return SEC_OID_UNKNOWN;
  219.     return cinfo->contentTypeTag->offset;
  220. }
  221. SECItem *
  222. NSS_CMSContentInfo_GetContentTypeOID(NSSCMSContentInfo *cinfo)
  223. {
  224.     if (cinfo->contentTypeTag == NULL)
  225. cinfo->contentTypeTag = SECOID_FindOID(&(cinfo->contentType));
  226.     if (cinfo->contentTypeTag == NULL)
  227. return NULL;
  228.     return &(cinfo->contentTypeTag->oid);
  229. }
  230. /*
  231.  * NSS_CMSContentInfo_GetContentEncAlgTag - find out (saving pointer to lookup result
  232.  * for future reference) and return the content encryption algorithm tag.
  233.  */
  234. SECOidTag
  235. NSS_CMSContentInfo_GetContentEncAlgTag(NSSCMSContentInfo *cinfo)
  236. {
  237.     if (cinfo->contentEncAlgTag == SEC_OID_UNKNOWN)
  238. cinfo->contentEncAlgTag = SECOID_GetAlgorithmTag(&(cinfo->contentEncAlg));
  239.     return cinfo->contentEncAlgTag;
  240. }
  241. /*
  242.  * NSS_CMSContentInfo_GetContentEncAlg - find out and return the content encryption algorithm tag.
  243.  */
  244. SECAlgorithmID *
  245. NSS_CMSContentInfo_GetContentEncAlg(NSSCMSContentInfo *cinfo)
  246. {
  247.     return &(cinfo->contentEncAlg);
  248. }
  249. SECStatus
  250. NSS_CMSContentInfo_SetContentEncAlg(PLArenaPool *poolp, NSSCMSContentInfo *cinfo,
  251.     SECOidTag bulkalgtag, SECItem *parameters, int keysize)
  252. {
  253.     SECStatus rv;
  254.     rv = SECOID_SetAlgorithmID(poolp, &(cinfo->contentEncAlg), bulkalgtag, parameters);
  255.     if (rv != SECSuccess)
  256. return SECFailure;
  257.     cinfo->keysize = keysize;
  258.     return SECSuccess;
  259. }
  260. SECStatus
  261. NSS_CMSContentInfo_SetContentEncAlgID(PLArenaPool *poolp, NSSCMSContentInfo *cinfo,
  262.     SECAlgorithmID *algid, int keysize)
  263. {
  264.     SECStatus rv;
  265.     rv = SECOID_CopyAlgorithmID(poolp, &(cinfo->contentEncAlg), algid);
  266.     if (rv != SECSuccess)
  267. return SECFailure;
  268.     if (keysize >= 0)
  269. cinfo->keysize = keysize;
  270.     return SECSuccess;
  271. }
  272. void
  273. NSS_CMSContentInfo_SetBulkKey(NSSCMSContentInfo *cinfo, PK11SymKey *bulkkey)
  274. {
  275.     cinfo->bulkkey = PK11_ReferenceSymKey(bulkkey);
  276.     cinfo->keysize = PK11_GetKeyStrength(cinfo->bulkkey, &(cinfo->contentEncAlg));
  277. }
  278. PK11SymKey *
  279. NSS_CMSContentInfo_GetBulkKey(NSSCMSContentInfo *cinfo)
  280. {
  281.     if (cinfo->bulkkey == NULL)
  282. return NULL;
  283.     return PK11_ReferenceSymKey(cinfo->bulkkey);
  284. }
  285. int
  286. NSS_CMSContentInfo_GetBulkKeySize(NSSCMSContentInfo *cinfo)
  287. {
  288.     return cinfo->keysize;
  289. }