protocolshr.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 "string.h"
  34. #include "protocol.h"
  35. #include "protocolshr.h"
  36. #include "messages.h"
  37. /* Forward ref */
  38. static void encrypt(CMTItem *data);
  39. static void decrypt(CMTItem *data);
  40. const char *kPrefix = "Encrypted";
  41. /* encryption request */
  42. CMTStatus
  43. CMT_DoEncryptionRequest(CMTItem *message)
  44. {
  45.   CMTStatus rv = CMTSuccess;
  46.   EncryptRequestMessage request;
  47.   EncryptReplyMessage reply;
  48.   CMUint32 pLen = strlen(kPrefix);
  49.   /* Initialize */
  50.   request.keyid.data = 0;
  51.   request.data.data = 0;
  52.   reply.item.data = 0;
  53.   /* Decode incoming message */
  54.   rv = CMT_DecodeMessage(EncryptRequestTemplate, &request, message);
  55.   if (rv != CMTSuccess) goto loser;  /* Protocol error */
  56.   /* Free incoming message */
  57.   free(message->data);
  58.   message->data = NULL;
  59.   /* "Encrypt" by prefixing the data */
  60.   reply.item.len = request.data.len + pLen;
  61.   reply.item.data = calloc(reply.item.len, 1);
  62.   if (!reply.item.data) {
  63. rv = CMTFailure;
  64. goto loser;
  65.   }
  66.   if (pLen) memcpy(reply.item.data, kPrefix, pLen);
  67.   encrypt(&request.data);
  68.   memcpy(&reply.item.data[pLen], request.data.data, request.data.len);
  69.   
  70.   /* Generate response */
  71.   message->type = SSM_SDR_ENCRYPT_REPLY;
  72.   rv = CMT_EncodeMessage(EncryptReplyTemplate, message, &reply);
  73.   if (rv != CMTSuccess) goto loser;  /* Unknown error */
  74. loser:
  75.   if (request.keyid.data) free(request.keyid.data);
  76.   if (request.data.data) free(request.data.data);
  77.   if (request.ctx.data) free(request.ctx.data);
  78.   if (reply.item.data) free(reply.item.data);
  79.   return rv;
  80. }
  81. /* decryption request */
  82. CMTStatus
  83. CMT_DoDecryptionRequest(CMTItem *message)
  84. {
  85.   CMTStatus rv = CMTSuccess;
  86.   DecryptRequestMessage request;
  87.   DecryptReplyMessage reply;
  88.   CMUint32 pLen = strlen(kPrefix);
  89.   /* Initialize */
  90.   request.data.data = 0;
  91.   request.ctx.data = 0;
  92.   reply.item.data = 0;
  93.   /* Decode the message */
  94.   rv = CMT_DecodeMessage(DecryptRequestTemplate, &request, message);
  95.   if (rv != CMTSuccess) goto loser;
  96.   /* Free incoming message */
  97.   free(message->data);
  98.   message->data = NULL;
  99.   /* "Decrypt" the message by removing the key */
  100.   if (pLen && memcmp(request.data.data, kPrefix, pLen) != 0) {
  101.     rv = CMTFailure;  /* Invalid format */
  102.     goto loser;
  103.   }
  104.   reply.item.len = request.data.len - pLen;
  105.   reply.item.data = calloc(reply.item.len, 1);
  106.   if (!reply.item.data) { rv = CMTFailure;  goto loser; }
  107.   memcpy(reply.item.data, &request.data.data[pLen], reply.item.len);
  108.   decrypt(&reply.item);
  109.   /* Create reply message */
  110.   message->type = SSM_SDR_DECRYPT_REPLY;
  111.   rv = CMT_EncodeMessage(DecryptReplyTemplate, message, &reply);
  112.   if (rv != CMTSuccess) goto loser;
  113. loser:
  114.   if (request.data.data) free(request.data.data);
  115.   if (request.ctx.data) free(request.ctx.data);
  116.   if (reply.item.data) free(reply.item.data);
  117.   return rv;
  118. }
  119. /* "encrypt" */
  120. static unsigned char mask[64] = {
  121.  0x73, 0x46, 0x1a, 0x05, 0x24, 0x65, 0x43, 0xb4, 0x24, 0xee, 0x79, 0xc1, 0xcc,
  122.  0x49, 0xc7, 0x27, 0x11, 0x91, 0x2e, 0x8f, 0xaa, 0xf7, 0x62, 0x75, 0x41, 0x7e,
  123.  0xb2, 0x42, 0xde, 0x1b, 0x42, 0x7b, 0x1f, 0x33, 0x49, 0xca, 0xd1, 0x6a, 0x85,
  124.  0x05, 0x6c, 0xf9, 0x0e, 0x3e, 0x72, 0x02, 0xf2, 0xd8, 0x9d, 0xa1, 0xb8, 0x6e,
  125.  0x03, 0x18, 0x3e, 0x82, 0x86, 0x34, 0x1a, 0x61, 0xd9, 0x65, 0xb6, 0x7f
  126. };
  127. static void
  128. encrypt(CMTItem *data)
  129. {
  130.   unsigned int i, j;
  131.   j = 0;
  132.   for(i = 0;i < data->len;i++)
  133.   {
  134.     data->data[i] ^= mask[j];
  135.     if (++j >= 64) j = 0;
  136.   }
  137. }
  138. static void
  139. decrypt(CMTItem *data)
  140. {
  141.   encrypt(data);
  142. }