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

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 "secoid.h"
  34. #include "secder.h" /* XXX remove this when remove the DERTemplate */
  35. #include "secasn1.h"
  36. #include "secitem.h"
  37. #include "secerr.h"
  38. /* XXX Old template; want to expunge it eventually. */
  39. DERTemplate SECAlgorithmIDTemplate[] = {
  40.     { DER_SEQUENCE,
  41.   0, NULL, sizeof(SECAlgorithmID) },
  42.     { DER_OBJECT_ID,
  43.   offsetof(SECAlgorithmID,algorithm), },
  44.     { DER_OPTIONAL | DER_ANY,
  45.   offsetof(SECAlgorithmID,parameters), },
  46.     { 0, }
  47. };
  48. const SEC_ASN1Template SECOID_AlgorithmIDTemplate[] = {
  49.     { SEC_ASN1_SEQUENCE,
  50.   0, NULL, sizeof(SECAlgorithmID) },
  51.     { SEC_ASN1_OBJECT_ID,
  52.   offsetof(SECAlgorithmID,algorithm), },
  53.     { SEC_ASN1_OPTIONAL | SEC_ASN1_ANY,
  54.   offsetof(SECAlgorithmID,parameters), },
  55.     { 0, }
  56. };
  57. SECOidTag
  58. SECOID_GetAlgorithmTag(SECAlgorithmID *id)
  59. {
  60.     if (id == NULL || id->algorithm.data == NULL)
  61. return SEC_OID_UNKNOWN;
  62.     return SECOID_FindOIDTag (&(id->algorithm));
  63. }
  64. SECStatus
  65. SECOID_SetAlgorithmID(PRArenaPool *arena, SECAlgorithmID *id, SECOidTag which,
  66.       SECItem *params)
  67. {
  68.     SECOidData *oiddata;
  69.     PRBool add_null_param;
  70.     oiddata = SECOID_FindOIDByTag(which);
  71.     if ( !oiddata ) {
  72. PORT_SetError(SEC_ERROR_INVALID_ALGORITHM);
  73. return SECFailure;
  74.     }
  75.     if (SECITEM_CopyItem(arena, &id->algorithm, &oiddata->oid))
  76. return SECFailure;
  77.     switch (which) {
  78.       case SEC_OID_MD2:
  79.       case SEC_OID_MD4:
  80.       case SEC_OID_MD5:
  81.       case SEC_OID_SHA1:
  82.       case SEC_OID_PKCS1_RSA_ENCRYPTION:
  83.       case SEC_OID_PKCS1_MD2_WITH_RSA_ENCRYPTION:
  84.       case SEC_OID_PKCS1_MD4_WITH_RSA_ENCRYPTION:
  85.       case SEC_OID_PKCS1_MD5_WITH_RSA_ENCRYPTION:
  86.       case SEC_OID_PKCS1_SHA1_WITH_RSA_ENCRYPTION:
  87. add_null_param = PR_TRUE;
  88. break;
  89.       default:
  90. add_null_param = PR_FALSE;
  91. break;
  92.     }
  93.     if (params) {
  94. /*
  95.  * I am specifically *not* enforcing the following assertion
  96.  * (by following it up with an error and a return of failure)
  97.  * because I do not want to introduce any change in the current
  98.  * behavior.  But I do want for us to notice if the following is
  99.  * ever true, because I do not think it should be so and probably
  100.  * signifies an error/bug somewhere.
  101.  */
  102. PORT_Assert(!add_null_param || (params->len == 2
  103. && params->data[0] == SEC_ASN1_NULL
  104. && params->data[1] == 0));
  105. if (SECITEM_CopyItem(arena, &id->parameters, params)) {
  106.     return SECFailure;
  107. }
  108.     } else {
  109. /*
  110.  * Again, this is not considered an error.  But if we assume
  111.  * that nobody tries to set the parameters field themselves
  112.  * (but always uses this routine to do that), then we should
  113.  * not hit the following assertion.  Unless they forgot to zero
  114.  * the structure, which could also be a bad (and wrong) thing.
  115.  */
  116. PORT_Assert(id->parameters.data == NULL);
  117. if (add_null_param) {
  118.     (void) SECITEM_AllocItem(arena, &id->parameters, 2);
  119.     if (id->parameters.data == NULL) {
  120. return SECFailure;
  121.     }
  122.     id->parameters.data[0] = SEC_ASN1_NULL;
  123.     id->parameters.data[1] = 0;
  124. }
  125.     }
  126.     return SECSuccess;
  127. }
  128. SECStatus
  129. SECOID_CopyAlgorithmID(PRArenaPool *arena, SECAlgorithmID *to, SECAlgorithmID *from)
  130. {
  131.     SECStatus rv;
  132.     rv = SECITEM_CopyItem(arena, &to->algorithm, &from->algorithm);
  133.     if (rv) return rv;
  134.     rv = SECITEM_CopyItem(arena, &to->parameters, &from->parameters);
  135.     return rv;
  136. }
  137. void SECOID_DestroyAlgorithmID(SECAlgorithmID *algid, PRBool freeit)
  138. {
  139.     SECITEM_FreeItem(&algid->parameters, PR_FALSE);
  140.     SECITEM_FreeItem(&algid->algorithm, PR_FALSE);
  141.     if(freeit == PR_TRUE)
  142.         PORT_Free(algid);
  143. }
  144. SECComparison
  145. SECOID_CompareAlgorithmID(SECAlgorithmID *a, SECAlgorithmID *b)
  146. {
  147.     SECComparison rv;
  148.     rv = SECITEM_CompareItem(&a->algorithm, &b->algorithm);
  149.     if (rv) return rv;
  150.     rv = SECITEM_CompareItem(&a->parameters, &b->parameters);
  151.     return rv;
  152. }