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

CA认证

开发平台:

WINDOWS

  1. /* -*- Mode: C; tab-width: 8 -*-*/
  2. /*
  3.  * The contents of this file are subject to the Mozilla Public
  4.  * License Version 1.1 (the "License"); you may not use this file
  5.  * except in compliance with the License. You may obtain a copy of
  6.  * the License at http://www.mozilla.org/MPL/
  7.  * 
  8.  * Software distributed under the License is distributed on an "AS
  9.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.  * implied. See the License for the specific language governing
  11.  * rights and limitations under the License.
  12.  * 
  13.  * The Original Code is the Netscape security libraries.
  14.  * 
  15.  * The Initial Developer of the Original Code is Netscape
  16.  * Communications Corporation.  Portions created by Netscape are 
  17.  * Copyright (C) 1994-2000 Netscape Communications Corporation.  All
  18.  * Rights Reserved.
  19.  * 
  20.  * Contributor(s):
  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. #include "cmmf.h"
  35. #include "cmmfi.h"
  36. #include "secasn1.h"
  37. #include "secitem.h"
  38. static const SEC_ASN1Template CMMFSequenceOfCertifiedKeyPairsTemplate[] = {
  39.     { SEC_ASN1_SEQUENCE_OF, 0, CMMFCertifiedKeyPairTemplate}
  40. };
  41. static const SEC_ASN1Template CMMFKeyRecRepContentTemplate[] = {
  42.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFKeyRecRepContent)},
  43.     { SEC_ASN1_INLINE, offsetof(CMMFKeyRecRepContent, status), 
  44.       CMMFPKIStatusInfoTemplate},
  45.     { SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_POINTER | 0,
  46.       offsetof(CMMFKeyRecRepContent, newSigCert),
  47.       SEC_SignedCertificateTemplate},
  48.     { SEC_ASN1_CONSTRUCTED | SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | 1,
  49.       offsetof(CMMFKeyRecRepContent, caCerts),
  50.       CMMFSequenceOfCertsTemplate},
  51.     { SEC_ASN1_CONSTRUCTED | SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | 2,
  52.       offsetof(CMMFKeyRecRepContent, keyPairHist),
  53.       CMMFSequenceOfCertifiedKeyPairsTemplate},
  54.     { 0 }
  55. };
  56. SECStatus
  57. CMMF_EncodeCertRepContent (CMMFCertRepContent        *inCertRepContent,
  58.    CRMFEncoderOutputCallback  inCallback,
  59.    void                      *inArg)
  60. {
  61.     return cmmf_user_encode(inCertRepContent, inCallback, inArg,
  62.     CMMFCertRepContentTemplate);
  63. }
  64. SECStatus
  65. CMMF_EncodePOPODecKeyChallContent(CMMFPOPODecKeyChallContent *inDecKeyChall,
  66.   CRMFEncoderOutputCallback inCallback,
  67.   void                     *inArg)
  68. {
  69.     return cmmf_user_encode(inDecKeyChall, inCallback, inArg,
  70.     CMMFPOPODecKeyChallContentTemplate);
  71. }
  72. CMMFPOPODecKeyRespContent*
  73. CMMF_CreatePOPODecKeyRespContentFromDER(const char *buf, long len)
  74. {
  75.     PRArenaPool               *poolp;
  76.     CMMFPOPODecKeyRespContent *decKeyResp;
  77.     SECStatus                  rv;
  78.     poolp = PORT_NewArena(CRMF_DEFAULT_ARENA_SIZE);
  79.     if (poolp == NULL) {
  80.         return NULL;
  81.     }
  82.     decKeyResp = PORT_ArenaZNew(poolp, CMMFPOPODecKeyRespContent);
  83.     if (decKeyResp == NULL) {
  84.         goto loser;
  85.     }
  86.     decKeyResp->poolp = poolp;
  87.     rv = SEC_ASN1Decode(poolp, decKeyResp, CMMFPOPODecKeyRespContentTemplate,
  88. buf, len);
  89.     if (rv != SECSuccess) {
  90.         goto loser;
  91.     }
  92.     return decKeyResp;
  93.     
  94.  loser:
  95.     if (poolp != NULL) {
  96.         PORT_FreeArena(poolp, PR_FALSE);
  97.     }
  98.     return NULL;
  99. }
  100. SECStatus
  101. CMMF_EncodeKeyRecRepContent(CMMFKeyRecRepContent      *inKeyRecRep,
  102.     CRMFEncoderOutputCallback  inCallback,
  103.     void                      *inArg)
  104. {
  105.     return cmmf_user_encode(inKeyRecRep, inCallback, inArg,
  106.     CMMFKeyRecRepContentTemplate);
  107. }
  108. CMMFKeyRecRepContent* 
  109. CMMF_CreateKeyRecRepContentFromDER(CERTCertDBHandle *db, const char *buf, 
  110.    long len)
  111. {
  112.     PRArenaPool          *poolp;
  113.     CMMFKeyRecRepContent *keyRecContent;
  114.     SECStatus             rv;
  115.     poolp = PORT_NewArena(CRMF_DEFAULT_ARENA_SIZE);
  116.     if (poolp == NULL) {
  117.         return NULL;
  118.     }
  119.     keyRecContent = PORT_ArenaZNew(poolp, CMMFKeyRecRepContent);
  120.     if (keyRecContent == NULL) {
  121.         goto loser;
  122.     }
  123.     keyRecContent->poolp = poolp;
  124.     rv = SEC_ASN1Decode(poolp, keyRecContent, CMMFKeyRecRepContentTemplate,
  125. buf, len);
  126.     if (rv != SECSuccess) {
  127.         goto loser;
  128.     }
  129.     if (keyRecContent->keyPairHist != NULL) {
  130.         while(keyRecContent->keyPairHist[keyRecContent->numKeyPairs] != NULL) {
  131.     rv = cmmf_decode_process_certified_key_pair(poolp, db,
  132.        keyRecContent->keyPairHist[keyRecContent->numKeyPairs]);
  133.     if (rv != SECSuccess) {
  134.         goto loser;
  135.     }
  136.     keyRecContent->numKeyPairs++;
  137. }
  138. keyRecContent->allocKeyPairs = keyRecContent->numKeyPairs;
  139.     }
  140.     keyRecContent->isDecoded = PR_TRUE;
  141.     return keyRecContent;
  142.  loser:
  143.     if (poolp != NULL) {
  144.         PORT_FreeArena(poolp, PR_FALSE);
  145.     }
  146.     return NULL;
  147. }