asn1cmn.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 "cmmf.h"
  34. #include "cmmfi.h"
  35. static const SEC_ASN1Template CMMFCertResponseTemplate[] = {
  36.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFCertResponse)},
  37.     { SEC_ASN1_INTEGER, offsetof(CMMFCertResponse, certReqId)},
  38.     { SEC_ASN1_INLINE, offsetof(CMMFCertResponse, status), 
  39.       CMMFPKIStatusInfoTemplate},
  40.     { SEC_ASN1_OPTIONAL | SEC_ASN1_POINTER, 
  41.       offsetof(CMMFCertResponse, certifiedKeyPair),
  42.       CMMFCertifiedKeyPairTemplate},
  43.     { 0 }
  44. };
  45. static const SEC_ASN1Template CMMFCertOrEncCertTemplate[] = {
  46.     { SEC_ASN1_ANY, offsetof(CMMFCertOrEncCert, derValue), NULL, 
  47.       sizeof(CMMFCertOrEncCert)},
  48.     { 0 }
  49. };
  50. const SEC_ASN1Template CMMFCertifiedKeyPairTemplate[] = {
  51.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFCertifiedKeyPair)},
  52.     { SEC_ASN1_INLINE, offsetof(CMMFCertifiedKeyPair, certOrEncCert),
  53.       CMMFCertOrEncCertTemplate },
  54.     { SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | SEC_ASN1_POINTER | 0,
  55.       offsetof(CMMFCertifiedKeyPair, privateKey),
  56.       CRMFEncryptedValueTemplate},
  57.     { SEC_ASN1_OPTIONAL | SEC_ASN1_CONTEXT_SPECIFIC | 1,
  58.       offsetof (CMMFCertifiedKeyPair, derPublicationInfo),
  59.       SEC_AnyTemplate},
  60.     { 0 }
  61. };
  62. const SEC_ASN1Template CMMFPKIStatusInfoTemplate[] = {
  63.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFPKIStatusInfo)},
  64.     { SEC_ASN1_INTEGER, offsetof(CMMFPKIStatusInfo, status)},
  65.     { SEC_ASN1_OPTIONAL | SEC_ASN1_UTF8_STRING, 
  66.       offsetof(CMMFPKIStatusInfo, statusString)},
  67.     { SEC_ASN1_OPTIONAL | SEC_ASN1_BIT_STRING, 
  68.       offsetof(CMMFPKIStatusInfo, failInfo)},
  69.     { 0 }
  70. };
  71. const SEC_ASN1Template CMMFSequenceOfCertsTemplate[] = {
  72.     { SEC_ASN1_SEQUENCE_OF, 0, SEC_SignedCertificateTemplate}
  73. };
  74. const SEC_ASN1Template CMMFRandTemplate[] = {
  75.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFRand)},
  76.     { SEC_ASN1_INTEGER, offsetof(CMMFRand, integer)},
  77.     { SEC_ASN1_OCTET_STRING, offsetof(CMMFRand, senderHash)},
  78.     { 0 }
  79. };
  80. const SEC_ASN1Template CMMFPOPODecKeyRespContentTemplate[] = {
  81.     { SEC_ASN1_SEQUENCE_OF, offsetof(CMMFPOPODecKeyRespContent, responses),
  82.       SEC_IntegerTemplate, sizeof(CMMFPOPODecKeyRespContent)},
  83.     { 0 }
  84. };
  85. const SEC_ASN1Template CMMFCertOrEncCertEncryptedCertTemplate[] = {
  86.     { SEC_ASN1_CONTEXT_SPECIFIC | 1,
  87.       0,
  88.       CRMFEncryptedValueTemplate},
  89.     { 0 }
  90. };
  91. const SEC_ASN1Template CMMFCertOrEncCertCertificateTemplate[] = {
  92.     { SEC_ASN1_CONTEXT_SPECIFIC | 0,
  93.       0,
  94.       SEC_SignedCertificateTemplate},
  95.     { 0 }
  96. };
  97. const SEC_ASN1Template CMMFCertRepContentTemplate[] = {
  98.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFCertRepContent)},
  99.     { SEC_ASN1_CONSTRUCTED | SEC_ASN1_OPTIONAL |
  100.       SEC_ASN1_CONTEXT_SPECIFIC | 1,
  101.       offsetof(CMMFCertRepContent, caPubs),
  102.       CMMFSequenceOfCertsTemplate },
  103.     { SEC_ASN1_SEQUENCE_OF, offsetof(CMMFCertRepContent, response),
  104.       CMMFCertResponseTemplate},
  105.     { 0 }
  106. };
  107. static const SEC_ASN1Template CMMFChallengeTemplate[] = {
  108.     { SEC_ASN1_SEQUENCE, 0, NULL, sizeof(CMMFChallenge)},
  109.     { SEC_ASN1_POINTER | SEC_ASN1_OPTIONAL, offsetof(CMMFChallenge, owf),
  110.       SECOID_AlgorithmIDTemplate },
  111.     { SEC_ASN1_OCTET_STRING, offsetof(CMMFChallenge, witness) },
  112.     { SEC_ASN1_ANY, offsetof(CMMFChallenge, senderDER) },
  113.     { SEC_ASN1_OCTET_STRING, offsetof(CMMFChallenge, key) },
  114.     { SEC_ASN1_OCTET_STRING, offsetof(CMMFChallenge, challenge) },
  115.     { 0 }
  116. };
  117. const SEC_ASN1Template CMMFPOPODecKeyChallContentTemplate[] = {
  118.     { SEC_ASN1_SEQUENCE_OF,offsetof(CMMFPOPODecKeyChallContent, challenges),
  119.       CMMFChallengeTemplate, sizeof(CMMFPOPODecKeyChallContent) },
  120.     { 0 }
  121. };
  122. SECStatus
  123. cmmf_decode_process_cert_response(PRArenaPool      *poolp, 
  124.   CERTCertDBHandle *db,
  125.   CMMFCertResponse *inCertResp)
  126. {
  127.     SECStatus rv = SECSuccess;
  128.   
  129.     if (inCertResp->certifiedKeyPair != NULL) {
  130.         rv = cmmf_decode_process_certified_key_pair(poolp, 
  131.     db,
  132. inCertResp->certifiedKeyPair);
  133.     }
  134.     return rv;
  135. }
  136. static CERTCertificate*
  137. cmmf_DecodeDERCertificate(CERTCertDBHandle *db, SECItem *derCert)
  138. {
  139.     CERTCertificate *newCert;
  140.     newCert = CERT_DecodeDERCertificate(derCert, PR_TRUE, NULL);
  141.     if (newCert != NULL && newCert->dbhandle == NULL) {
  142.         newCert->dbhandle = db;
  143.     }
  144.     return newCert;
  145. }
  146. static CMMFCertOrEncCertChoice
  147. cmmf_get_certorenccertchoice_from_der(SECItem *der)
  148. {
  149.     CMMFCertOrEncCertChoice retChoice; 
  150.     switch(der->data[0] & 0x0f) {
  151.     case 0:
  152.         retChoice = cmmfCertificate;
  153. break;
  154.     case 1:
  155.         retChoice = cmmfEncryptedCert;
  156. break;
  157.     default:
  158.         retChoice = cmmfNoCertOrEncCert;
  159. break;
  160.     }
  161.     return retChoice;
  162. }
  163. static SECStatus
  164. cmmf_decode_process_certorenccert(PRArenaPool       *poolp,
  165.   CERTCertDBHandle  *db,
  166.   CMMFCertOrEncCert *inCertOrEncCert)
  167. {
  168.     SECStatus rv = SECSuccess;
  169.     inCertOrEncCert->choice = 
  170.         cmmf_get_certorenccertchoice_from_der(&inCertOrEncCert->derValue);
  171.     switch (inCertOrEncCert->choice) {
  172.     case cmmfCertificate:
  173.         {
  174.     /* The DER has implicit tagging, so we gotta switch it to 
  175.      * un-tagged in order for the ASN1 parser to understand it.
  176.      * Saving the bits that were changed.
  177.      */ 
  178.     inCertOrEncCert->derValue.data[0] = 0x30;
  179.     inCertOrEncCert->cert.certificate = 
  180.         cmmf_DecodeDERCertificate(db, &inCertOrEncCert->derValue);
  181.     if (inCertOrEncCert->cert.certificate == NULL) {
  182.         rv = SECFailure;
  183.     }
  184. }
  185. break;
  186.     case cmmfEncryptedCert:
  187.         inCertOrEncCert->cert.encryptedCert =
  188.     PORT_ArenaZNew(poolp, CRMFEncryptedValue);
  189. if (inCertOrEncCert->cert.encryptedCert == NULL) {
  190.     rv = SECFailure;
  191.     break;
  192. }
  193. rv = SEC_ASN1Decode(poolp, inCertOrEncCert->cert.encryptedCert, 
  194.     CMMFCertOrEncCertEncryptedCertTemplate, 
  195.     (const char*)inCertOrEncCert->derValue.data,
  196.     inCertOrEncCert->derValue.len);
  197. break;
  198.     default:
  199.         rv = SECFailure;
  200.     }
  201.     return rv;
  202. }
  203. SECStatus 
  204. cmmf_decode_process_certified_key_pair(PRArenaPool          *poolp,
  205.        CERTCertDBHandle     *db,
  206.        CMMFCertifiedKeyPair *inCertKeyPair)
  207. {
  208.     return cmmf_decode_process_certorenccert (poolp,
  209.       db,
  210.       &inCertKeyPair->certOrEncCert);
  211. }