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

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 "cmtcmn.h"
  34. #include "cmtutils.h"
  35. #include "messages.h"
  36. #ifdef XP_MAC
  37. #include "cmtmac.h"
  38. #endif
  39. CMTStatus CMT_SecurityAdvisor(PCMT_CONTROL control, CMTSecurityAdvisorData* data, CMUint32 *resID)
  40. {
  41.     CMTItem message = {0, NULL, 0};
  42.     SecurityAdvisorRequest request;
  43.     SingleNumMessage reply;
  44.     if (!control) {
  45.         return CMTFailure;
  46.     }
  47.     if (!data) {
  48.         return CMTFailure;
  49.     }
  50.     request.infoContext = data->infoContext;
  51.     request.resID = data->resID;
  52.     request.hostname = data->hostname;
  53. request.senderAddr = data->senderAddr;
  54. request.encryptedP7CInfo = data->encryptedP7CInfo;
  55. request.signedP7CInfo = data->signedP7CInfo;
  56. request.decodeError = data->decodeError;
  57. request.verifyError = data->verifyError;
  58. request.encryptthis = data->encryptthis;
  59. request.signthis = data->signthis;
  60. request.numRecipients = data->numRecipients;
  61. request.recipients = data->recipients;
  62.     message.type = SSM_REQUEST_MESSAGE | SSM_SECURITY_ADVISOR;
  63.     if (CMT_EncodeMessage(SecurityAdvisorRequestTemplate, &message, &request) != CMTSuccess) {
  64.         goto loser;
  65.     }
  66.     /* Send the message and get the response */
  67. if (CMT_SendMessage(control, &message) != CMTSuccess) {
  68.         goto loser;
  69. }
  70.     if (message.type != (SSM_REPLY_OK_MESSAGE | SSM_SECURITY_ADVISOR)) {
  71.         goto loser;
  72.     }
  73.     /* Decode the message */
  74.     if (CMT_DecodeMessage(SingleNumMessageTemplate, &reply, &message) != CMTSuccess) {
  75.         goto loser;
  76.     }
  77.     *resID = reply.value;
  78.     return CMTSuccess;
  79. loser:
  80.     if (message.data) {
  81.         free(message.data);
  82.     }
  83.     return CMTFailure;
  84. }