alghmac.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 "alghmac.h"
  34. #include "sechash.h"
  35. #include "secoid.h"
  36. #include "secport.h"
  37. #define HMAC_PAD_SIZE 64
  38. struct HMACContextStr {
  39.     void *hash;
  40.     SECHashObject *hashobj;
  41.     unsigned char ipad[HMAC_PAD_SIZE];
  42.     unsigned char opad[HMAC_PAD_SIZE];
  43. };
  44. void
  45. HMAC_Destroy(HMACContext *cx)
  46. {
  47.     if (cx == NULL)
  48. return;
  49.     if (cx->hash != NULL)
  50. cx->hashobj->destroy(cx->hash, PR_TRUE);
  51.     PORT_ZFree(cx, sizeof(HMACContext));
  52. }
  53. HMACContext *
  54. HMAC_Create(SECOidTag      hash_alg, 
  55.       const unsigned char *secret, 
  56.             unsigned int   secret_len)
  57. {
  58.     HMACContext *cx;
  59.     int i;
  60.     unsigned char hashed_secret[SHA1_LENGTH];
  61.     cx = (HMACContext*)PORT_ZAlloc(sizeof(HMACContext));
  62.     if (cx == NULL)
  63. return NULL;
  64.     switch (hash_alg) {
  65.       case SEC_OID_MD5:
  66. cx->hashobj = &SECRawHashObjects[HASH_AlgMD5];
  67. break;
  68.       case SEC_OID_MD2:
  69. cx->hashobj = &SECRawHashObjects[HASH_AlgMD2];
  70. break;
  71.       case SEC_OID_SHA1:
  72. cx->hashobj = &SECRawHashObjects[HASH_AlgSHA1];
  73. break;
  74.       default:
  75. goto loser;
  76.     }
  77.     cx->hash = cx->hashobj->create();
  78.     if (cx->hash == NULL)
  79. goto loser;
  80.     if (secret_len > HMAC_PAD_SIZE) {
  81. cx->hashobj->begin( cx->hash);
  82. cx->hashobj->update(cx->hash, secret, secret_len);
  83. cx->hashobj->end(   cx->hash, hashed_secret, &secret_len, 
  84.                  sizeof hashed_secret);
  85. if (secret_len != cx->hashobj->length)
  86.     goto loser;
  87. secret = (const unsigned char *)&hashed_secret[0];
  88.     }
  89.     PORT_Memset(cx->ipad, 0x36, sizeof cx->ipad);
  90.     PORT_Memset(cx->opad, 0x5c, sizeof cx->opad);
  91.     /* fold secret into padding */
  92.     for (i = 0; i < secret_len; i++) {
  93. cx->ipad[i] ^= secret[i];
  94. cx->opad[i] ^= secret[i];
  95.     }
  96.     PORT_Memset(hashed_secret, 0, sizeof hashed_secret);
  97.     return cx;
  98. loser:
  99.     PORT_Memset(hashed_secret, 0, sizeof hashed_secret);
  100.     HMAC_Destroy(cx);
  101.     return NULL;
  102. }
  103. void
  104. HMAC_Begin(HMACContext *cx)
  105. {
  106.     /* start inner hash */
  107.     cx->hashobj->begin(cx->hash);
  108.     cx->hashobj->update(cx->hash, cx->ipad, sizeof(cx->ipad));
  109. }
  110. void
  111. HMAC_Update(HMACContext *cx, const unsigned char *data, unsigned int data_len)
  112. {
  113.     cx->hashobj->update(cx->hash, data, data_len);
  114. }
  115. SECStatus
  116. HMAC_Finish(HMACContext *cx, unsigned char *result, unsigned int *result_len,
  117.     unsigned int max_result_len)
  118. {
  119.     if (max_result_len < cx->hashobj->length)
  120. return SECFailure;
  121.     cx->hashobj->end(cx->hash, result, result_len, max_result_len);
  122.     if (*result_len != cx->hashobj->length)
  123. return SECFailure;
  124.     cx->hashobj->begin(cx->hash);
  125.     cx->hashobj->update(cx->hash, cx->opad, sizeof(cx->opad));
  126.     cx->hashobj->update(cx->hash, result, *result_len);
  127.     cx->hashobj->end(cx->hash, result, result_len, max_result_len);
  128.     return SECSuccess;
  129. }
  130. HMACContext *
  131. HMAC_Clone(HMACContext *cx)
  132. {
  133.     HMACContext *newcx;
  134.     newcx = (HMACContext*)PORT_ZAlloc(sizeof(HMACContext));
  135.     if (newcx == NULL)
  136. goto loser;
  137.     newcx->hashobj = cx->hashobj;
  138.     newcx->hash = cx->hashobj->clone(cx->hash);
  139.     if (newcx->hash == NULL)
  140. goto loser;
  141.     PORT_Memcpy(newcx->ipad, cx->ipad, sizeof(cx->ipad));
  142.     PORT_Memcpy(newcx->opad, cx->opad, sizeof(cx->opad));
  143.     return newcx;
  144. loser:
  145.     HMAC_Destroy(newcx);
  146.     return NULL;
  147. }